We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7174b commit 892b478Copy full SHA for 892b478
.github/workflows/gradle-check.yml
@@ -0,0 +1,18 @@
1
+name: Gradle Check
2
+on:
3
+ workflow_dispatch:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - master
8
+ - dev-*
9
+jobs:
10
+ gradle-check:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-java@v3
15
+ with:
16
+ distribution: 'temurin'
17
+ java-version: '17'
18
+ - run: ./gradlew clean check --continue
0 commit comments