Migrate to GitHub actions from Travis.

This commit is contained in:
FireMasterK
2020-12-27 19:45:41 +05:30
committed by TobiGr
parent 288ddab65b
commit 1ba689900e
4 changed files with 63 additions and 15 deletions

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

@@ -0,0 +1,29 @@
name: CI
on:
push:
branches:
- dev
- master
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1.4.3
with:
java-version: 1.8
- name: Cache Gradle dependencies
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and run Tests
run: ./gradlew check --stacktrace