diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..fe2976196 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: test +on: + push: + branches: + - '*' + +jobs: + build-app: + name: Build App + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Test with Gradle + run: cd project; ./gradlew test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 360a22a15..000000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: android - -jdk: oraclejdk8 - -sudo: false - -android: - components: - - build-tools-29.0.2 - - android-29 - - licenses: - - android-sdk-preview-license-.+ - - android-sdk-license-.+ - - google-gdk-license-.+ - -script: - - cd project - - ./gradlew test