We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab2442e commit 4b4cce3Copy full SHA for 4b4cce3
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,39 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: ["v3"]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+permissions:
11
+ contents: read
12
13
+concurrency:
14
+ group: test-${{ github.ref }}
15
+ cancel-in-progress: true
16
17
+jobs:
18
+ test:
19
+ name: Test
20
+ runs-on: ubuntu-latest
21
+ timeout-minutes: 20
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v4
25
26
+ - name: Set up JDK 21
27
+ uses: actions/setup-java@v4
28
+ with:
29
+ distribution: temurin
30
+ java-version: "21"
31
32
+ - name: Setup Gradle
33
+ uses: gradle/actions/setup-gradle@v4
34
35
+ - name: Make gradlew executable
36
+ run: chmod +x ./gradlew
37
38
+ - name: Run tests
39
+ run: ./gradlew test --no-daemon
0 commit comments