Update dependency com.puppycrawl.tools:checkstyle to v10.21.3 #793
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- ver-* | |
pull_request: { } | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
if: ${{ | |
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) | |
|| (github.event_name == 'push' && !startsWith(github.event.head_commit.message, '[skip ci]') && !startsWith(github.event.head_commit.message, '[push-back]')) | |
|| github.event_name != 'push' | |
}} | |
name: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
env: | |
GRADLE_OPTS: -Dorg.gradle.parallel=true -Dorg.gradle.workers.max=4 -Dorg.gradle.warning.mode=all -Dorg.gradle.daemon=false -Dhttp.keepAlive=false -Dsun.net.client.defaultConnectTimeout=15000 -Dsun.net.client.defaultReadTimeout=600000 -Dsun.net.http.retryPost=false -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false | |
steps: | |
- name: Setup Java 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: zulu | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
lfs: true | |
fetch-depth: 0 | |
- name: Adjust files to be built on CI | |
run: | | |
sed -i 's/-all\.zip/-bin.zip/' gradle/wrapper/gradle-wrapper.properties | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v3 | |
- name: Cache Gradle | |
uses: remal-github-actions/cache-gradle@main | |
- name: Compile | |
run: | | |
./gradlew allClasses | |
echo "DISABLE_COMPILATION=true" >> "$GITHUB_ENV" | |
- name: Build | |
run: | | |
./gradlew build allTests | |
- name: Push back | |
env: | |
PUSH_BACK_TOKEN: ${{secrets.PUSH_BACK_TOKEN}} | |
if: ${{env.PUSH_BACK_TOKEN && github.event_name == 'push' && startsWith(github.ref, 'refs/heads/')}} | |
uses: remal-github-actions/push-back@v1 | |
with: | |
githubToken: ${{env.PUSH_BACK_TOKEN}} | |
message: '[push-back] Push-back updated files during build' |