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 bd1fcaa commit 1f69bb5Copy full SHA for 1f69bb5
.github/workflows/verify.yml
@@ -0,0 +1,26 @@
1
+name: verify
2
+on: [push, pull_request]
3
+jobs:
4
+ verify:
5
+ strategy:
6
+ matrix:
7
+ platform: [ubuntu-latest, macos-latest, windows-latest]
8
+ runs-on: ${{ matrix.platform }}
9
+ steps:
10
+ - name: Check out repository
11
+ uses: actions/checkout@v2
12
+
13
+ - name: Set up JDK 7
14
+ uses: actions/setup-java@v1
15
+ with:
16
+ java-version: 7
17
18
+ - name: Cache Maven packages
19
+ uses: actions/cache@v2
20
21
+ path: ~/.m2
22
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23
+ restore-keys: ${{ runner.os }}-m2
24
25
+ - name: Maven verify
26
+ run: mvn -B verify -Prun-its
0 commit comments