From cbef7b0c7ff448cdc51219f28f62e2cf8ce23195 Mon Sep 17 00:00:00 2001 From: Luciano Caravajal Date: Mon, 4 Oct 2021 15:14:29 -0300 Subject: [PATCH] GHA migration --- .github/workflows/test.yml | 15 +++++++++++++++ .travis.yml | 19 ------------------- 2 files changed, 15 insertions(+), 19 deletions(-) create mode 100644 .github/workflows/test.yml delete mode 100644 .travis.yml 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