Skip to content

Commit 45b8627

Browse files
committed
migrate from Travis CI to GitHub Actions CI
Signed-off-by: Sean C. Sullivan <[email protected]>
1 parent cb0710e commit 45b8627

File tree

2 files changed

+26
-35
lines changed

2 files changed

+26
-35
lines changed

.github/workflows/ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
java: [ '8', '11', '13', '14' ]
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

-35
This file was deleted.

0 commit comments

Comments
 (0)