diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..b3fbf65 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,19 @@ +name: Build +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + snapshot: + runs-on: macOS-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Configure JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Build + run: ./gradlew check assemble \ No newline at end of file