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 dae4b88 commit 7091cd2Copy full SHA for 7091cd2
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: Java CI with Maven
2
+
3
+on:
4
+ push:
5
+ branches: [ '**' ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up JDK 11
17
+ uses: actions/setup-java@v1
18
+ with:
19
+ java-version: 11
20
+ - name: Cache Maven packages
21
+ uses: actions/cache@v1
22
23
+ path: ~/.m2
24
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25
+ restore-keys: ${{ runner.os }}-m2
26
+ - name: Build with Maven
27
+ env:
28
+ # needed for excluding enterprise tests
29
+ TRAVIS: true
30
+ run: mvn -B clean test --file pom.xml --no-transfer-progress
.travis.yml
0 commit comments