From 7eb7c955ddb397d38f12b1e9b889f0af143badd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Kwiecin=CC=81ski?= Date: Mon, 28 Sep 2020 19:28:16 +0200 Subject: [PATCH] Add GA workflow --- .github/workflows/default.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/default.yml diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml new file mode 100644 index 0000000..a474959 --- /dev/null +++ b/.github/workflows/default.yml @@ -0,0 +1,19 @@ +name: Build project + +on: [push, pull_request] + +jobs: + build: + 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: Cache .gradle + uses: burrunan/gradle-cache-action@v1 + with: + job-id: build + - name: Assemble + run: ./gradlew assembleDebug --stacktrace \ No newline at end of file