Add GitHub Actions CI workflow (#1992)

This commit is contained in:
brothelul 2021-03-09 09:47:53 +08:00 committed by GitHub
parent 069f6182ab
commit 217cccd704
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Sentinel CI
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
java: [8, 11]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
architecture: x64
- name: Test with Maven
run: mvn test
- name: Build with Maven
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -DminimumPriority=1
- name: Run Codecov
run: bash <(curl -s https://codecov.io/bash)