Skip to content

Commit

Permalink
Add GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
sellmair committed Mar 15, 2024
1 parent 70ab81c commit 2b1416e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2b1416e

Please sign in to comment.