Files
Ornot/.gitea/workflows/build.yml
T
numbers 6e804af93c
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
Java Google Checkstyle / Checkstyle Linter (pull_request) Failing after 17s
lint on pull request
2026-01-23 22:46:25 -06:00

18 lines
497 B
YAML

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