Link Validator #695
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: Link Validator | |
on: | |
workflow_dispatch: | |
pull_request: | |
schedule: | |
- cron: '0 6 * * 1' | |
permissions: | |
contents: read | |
jobs: | |
validate-links: | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'akka/akka-persistence-jdbc' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
# See https://github.com/actions/checkout/issues/299#issuecomment-677674415 | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 100 | |
- name: Fetch tags | |
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11.0 | |
apps: cs | |
- name: sbt site | |
run: sbt docs/makeSite | |
- name: Run Link Validator | |
run: cs launch net.runne::site-link-validator:0.2.3 -- scripts/link-validator.conf |