From 38b9675ec88edbdcf7182be279ba96b06eda1f27 Mon Sep 17 00:00:00 2001 From: ligi Date: Fri, 13 Oct 2023 22:56:23 +0200 Subject: [PATCH] Add github actions --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..915f150e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +name: Build +on: [pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2.3.1 + + - name: Build + run: | + ./gradlew test build \ No newline at end of file