We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fdeb5a commit 85baed6Copy full SHA for 85baed6
1 file changed
.github/workflows/test.yaml
@@ -0,0 +1,27 @@
1
+name: Tests
2
+on:
3
+ push:
4
+ paths-ignore:
5
+ - 'README.md'
6
+ - 'CONTRIBUTING.md'
7
+ pull_request:
8
+ branches:
9
+ - main
10
+
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ concurrency:
15
+ group: ${{ github.workflow }}-${{ github.ref }}
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Set up JDK 17
20
+ uses: actions/setup-java@v2
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'adopt'
24
+ cache: maven
25
26
+ - name: run maven
27
+ run: ./mvnw --batch-mode --update-snapshots verify
0 commit comments