From eb959a3135eebcffff934c336dfeae40c82db53b Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 11 Jun 2021 22:33:08 +0600 Subject: [PATCH] add regular build workflow --- .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 00000000000..c2c5d194e1c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +name: Regular build +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build + run: ./gradlew build