Skip to content

Merge pull request #102 from rodneylab/ci__update_ci_config #71

Merge pull request #102 from rodneylab/ci__update_ci_config

Merge pull request #102 from rodneylab/ci__update_ci_config #71

Workflow file for this run

name: Links
on: [push, pull_request]
permissions:
contents: read
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
disable-telemetry: true
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Restore lychee cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Run lychee
uses: lycheeverse/lychee-action@f81112d0d2814ded911bd23e3beaa9dda9093915 # v2.1.0
with:
args: "--base . --cache --max-cache-age 1d --exclude-path \"deny.toml\" --exclude-path \"target/\" . \"**/*.toml\" \"**/*.rs\" \"**/*.yml\""
fail: true