add github actions for a fast view of pr succeed/not.

travis-ci is toooo slow.
This commit is contained in:
XenoAmess
2020-08-24 19:15:52 +08:00
parent 3a7ea4b606
commit 01de9ce450
2 changed files with 42 additions and 0 deletions

12
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "master"
target-branch: "develop"

30
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Java CI
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ ubuntu-latest , windows-latest , macos-latest ]
java: [ 11 ]
experimental: [ false ]
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.0
with:
java-version: ${{ matrix.java }}
- name: Build with mvnw
run: |
chmod 777 ./mvnw
./mvnw clean install