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.
2 parents cb0710e + a73647f commit 1744f5eCopy full SHA for 1744f5e
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ java: [ '8', '11', '13' ]
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v1
21
+ with:
22
+ java-version: ${{ matrix.java }}
23
+ - name: print Java version
24
+ run: java -version
25
+ - name: Build with Gradle
26
+ run: ./gradlew check
.travis.yml
0 commit comments