From 39b14394c8225689dbc7fe36fa121033558e934c Mon Sep 17 00:00:00 2001 From: "Sean C. Sullivan" Date: Sun, 27 Dec 2020 11:13:42 -0800 Subject: [PATCH] replace TravisCI with GitHub Actions CI --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ .travis.yml | 4 ---- 2 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3e62064 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-20.04 + + strategy: + matrix: + java: [8, 11, 15] + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: Build + run: mvn --no-transfer-progress -B -U -Dgpg.skip=true clean package diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 06ac3c0..0000000 --- a/.travis.yml +++ /dev/null @@ -1,4 +0,0 @@ -language: java -jdk: - - openjdk8 -install: mvn clean package -Dgpg.skip=true -U