We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b0e695 + f771514 commit cfa920fCopy full SHA for cfa920f
1 file changed
.github/workflows/run-maven-tests.yml
@@ -0,0 +1,24 @@
1
+name: Run maven tests
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
9
10
11
+jobs:
12
+ test:
13
+ name: Run tests
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up JDK 17
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ java-version: '17'
21
+ distribution: 'temurin'
22
+ cache: maven
23
+ - name: Maven test
24
+ run: mvn test
0 commit comments