We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a82a7 commit 0edc651Copy full SHA for 0edc651
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,33 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ name: test
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v5
16
17
+ - name: Set up JDK
18
+ uses: actions/setup-java@v5
19
+ with:
20
+ java-version: '17'
21
+ distribution: 'temurin'
22
23
+ - name: Setup Gradle
24
+ uses: gradle/actions/setup-gradle@v5
25
26
+ build-root-directory: libpretixnfc
27
28
+ - name: Run Gradle
29
+ run: ./gradlew clean check test build jar
30
+ working-directory: libpretixnfc
31
32
+ - name: Codecov
33
+ uses: codecov/codecov-action@v5
0 commit comments