We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556b267 commit 703a60dCopy full SHA for 703a60d
.github/workflows/test-build.yml
@@ -0,0 +1,21 @@
1
+name: Build
2
+on: [ pull_request, push ]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Checkout sources
8
+ uses: actions/checkout@v6
9
+ - name: Setup Java
10
+ uses: actions/setup-java@v5
11
+ with:
12
+ distribution: 'temurin'
13
+ java-version: 21
14
+ - name: Setup Gradle
15
+ uses: gradle/actions/setup-gradle@v5
16
17
+ cache-read-only: ${{ github.ref != 'refs/heads/main' }}
18
+ - name: Build with Gradle
19
+ run: ./gradlew build
20
+ - name: Test with Gradle
21
+ run: ./gradlew test
0 commit comments