We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b2a4e20 + 9a91eeb commit 8cad5cfCopy full SHA for 8cad5cf
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+concurrency:
8
+ group: ci-${{ github.ref }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ build:
13
+ name: Build & Test (JDK 17)
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Set up JDK 17
21
+ uses: actions/setup-java@v4
22
+ with:
23
+ distribution: temurin
24
+ java-version: '17'
25
26
+ - name: Set up Gradle
27
+ uses: gradle/actions/setup-gradle@v4
28
29
+ - name: Make gradlew executable
30
+ run: chmod +x ./gradlew
31
32
+ - name: Build and test
33
+ run: ./gradlew build --no-daemon --stacktrace
0 commit comments