Issue #19770: Fix JavadocTypeCheck record param matching #393
This file contains hidden or 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 run link checks. | |
| # | |
| # Workflow starts when: | |
| # 1) push on master branch | |
| # | |
| ##################################################################################### | |
| name: "Check no broken links" | |
| on: | |
| push: | |
| branches: [ master ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check_issues: | |
| if: github.repository == 'checkstyle/checkstyle' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| - name: Download checkstyle | |
| uses: actions/checkout@v6 | |
| - name: Setup local maven cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| key: checkstyle-maven-cache-${{ hashFiles('**/pom.xml') }} | |
| - name: Check links | |
| run: ./.ci/run-link-check-plugin.sh |