Skip to content

Commit

Permalink
workflow to build apk added
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudoankit committed Sep 26, 2023
1 parent 257c4ad commit 5b7f69c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Verify

on:
pull_request:
types: [ opened, ready_for_review, synchronize ]
branches: [ master ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup JDK 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Build apk
run: ./gradlew build --stacktrace

0 comments on commit 5b7f69c

Please sign in to comment.