Add GitHub action and remove Travis config

This commit is contained in:
Michael Schättgen 2020-12-12 11:32:50 +01:00
parent 735c086726
commit 1f2e45fd12
2 changed files with 10 additions and 24 deletions

View file

@ -0,0 +1,10 @@
name: Build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Build the app
run: ./gradlew build