Skip to content

Commit

Permalink
Add check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
connorwyatt committed Nov 5, 2023
1 parent ee31634 commit c498aa7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check Gradle project

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run check with Gradle Wrapper
run: ./gradlew check

0 comments on commit c498aa7

Please # to comment.