Issue #13345: Enable examples tests for NPathComplexityCheck #1
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
##################################################################################### | |
# GitHub Action to format specific files by google-java-format. | |
# | |
# Workflow starts when: | |
# 1) push to master | |
# 2) PR created or pushed | |
# | |
##################################################################################### | |
name: Google-Java-Format | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: '*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
VERSION: 1.24.0 | |
jobs: | |
test: | |
if: github.repository == 'checkstyle/checkstyle' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
- name: Checkout Pull Request Code | |
uses: actions/checkout@v4 | |
- uses: robinraju/release-downloader@v1 | |
with: | |
repository: 'google/google-java-format' | |
tag: "v${{env.VERSION}}" | |
fileName: "google-java-format-${{env.VERSION}}-all-deps.jar" | |
out-file-path: '.ci-temp' | |
- name: Run Formatting | |
run: | | |
./.ci/google-java-format.sh .ci-temp/google-java-format-${{env.VERSION}}-all-deps.jar | |
./.ci/validation.sh git-diff |