Add lint action for checkstyle
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

Reviewed-on: #1
Co-authored-by: Josh Chester <numbers@softwaresmyth.com>
Co-committed-by: Josh Chester <numbers@softwaresmyth.com>
This commit was merged in pull request #1.
This commit is contained in:
2026-01-23 23:25:56 -06:00
committed by numbers
parent b178b31cbf
commit 003f67aecb
4 changed files with 109 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Build with cached gradle
run-name: Building for ${{ gitea.actor }}
on: [label]
jobs:
Build-with-gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '22'
cache: 'gradle'
# cache-dependency-path: | # optional
# sub-project/*.gradle*
# sub-project/**/gradle-wrapper.properties
- run: ./gradlew build --no-daemon