Skip to content

Commit

Permalink
Add additional build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
InvictusRMC committed Feb 7, 2025
1 parent 6d19d5b commit 41fdb07
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Debug - Print Last Commit
run: git log -1

- name: Debug - Check File Changes
run: git diff --name-only HEAD~1 HEAD

- name: Setup Java
uses: actions/setup-java@v2
Expand All @@ -22,6 +30,9 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Clear Gradle Cache
run: ./gradlew clean

- name: Run Check
run: ./gradlew check

Expand Down

0 comments on commit 41fdb07

Please sign in to comment.