From 6899a7f93fa61ba9f98d912fdc75f8468b1375df Mon Sep 17 00:00:00 2001 From: Rubens Gondek Date: Mon, 3 Feb 2020 17:04:00 -0300 Subject: [PATCH] Add github workflow --- .github/workflows/main-workflow.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main-workflow.yml diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml new file mode 100644 index 00000000..097ece0f --- /dev/null +++ b/.github/workflows/main-workflow.yml @@ -0,0 +1,16 @@ +name: Run Tests +on: [push] +jobs: + test: + name: Test Job + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x ./gradlew + - name: Gradle test + run: ./gradlew test \ No newline at end of file