Link Validator #129
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
| # Licensed to the Apache Software Foundation (ASF) under one or more | |
| # license agreements; and to You under the Apache License, version 2.0: | |
| # | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # This file is part of the Apache Pekko project, which was derived from Akka. | |
| # | |
| name: Link Validator | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| jobs: | |
| validate-links: | |
| runs-on: ubuntu-22.04 | |
| if: github.repository == 'apache/pekko-connectors' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-tags: true | |
| fetch-depth: 0 | |
| - name: Setup Java 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Install sbt | |
| uses: sbt/setup-sbt@26ab4b0fa1c47fa62fc1f6e51823a658fb6c760c # v1.1.7 | |
| - name: Cache Coursier cache | |
| uses: coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # v6.4.7 | |
| - name: Setup Coursier | |
| uses: coursier/setup-action@039f736548afa5411c1382f40a5bd9c2d30e0383 # v1.3.9 | |
| - name: sbt site | |
| run: sbt docs/makeSite | |
| - name: Run Link Validator | |
| run: cs launch net.runne::site-link-validator:0.2.5 -- scripts/link-validator.conf |