Skip to content

Commit

Permalink
[skip ci] add workflow for checks
Browse files Browse the repository at this point in the history
  • Loading branch information
JvstvsHD committed Sep 14, 2024
1 parent 0af187e commit 3c3be57
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 project and generate JavaDocs
on: [push, pull_request]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@88425854a36845f9c881450d9660b5fd46bee142
- name: Build
run: ./gradlew build --stacktrace
- name: Generate javadocs
run: ./gradlew alljavadoc --stacktrace

0 comments on commit 3c3be57

Please sign in to comment.