Docs External Links Validation #101
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
| name: Docs External Links Validation | |
| on: | |
| schedule: | |
| - cron: 0 0 * * SUN | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| cache: 'sbt' | |
| check-latest: true | |
| - name: Setup SBT | |
| uses: sbt/setup-sbt@v1 | |
| - name: Review | |
| run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateLinks |