We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599280f commit 9d4a4e7Copy full SHA for 9d4a4e7
.github/workflows/tests.yml
@@ -0,0 +1,20 @@
1
+name: tests
2
+on: push
3
+jobs:
4
+ run_tests:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Checkout the repository
8
+ uses: actions/checkout@v2
9
+ - name: Set up JDK 14
10
+ uses: actions/setup-java@v1
11
+ with:
12
+ java-version: 14
13
+ - name: Cache Maven packages
14
+ uses: actions/cache@v2
15
16
+ path: ~/.m2
17
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
18
+ restore-keys: ${{ runner.os }}-m2
19
+ - name: Run tests with Maven
20
+ run: mvn -B test --file pom.xml
0 commit comments