Skip to content

Commit

Permalink
Add Build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dzirbel committed Aug 13, 2023
1 parent 65ba3cd commit 2b5a14c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on:
push:
workflow_dispatch: # allow manual trigger

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '18'

- run: ./gradlew --stacktrace check

0 comments on commit 2b5a14c

Please sign in to comment.