mirror of
https://github.com/shuaibiyy/awesome-tf.git
synced 2026-03-11 17:49:23 -05:00
22 lines
573 B
YAML
22 lines
573 B
YAML
name: link-checker
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
|
|
- name: Restore lychee cache
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
|
|
with:
|
|
path: .lycheecache
|
|
key: cache-lychee-${{ github.sha }}
|
|
restore-keys: cache-lychee-
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2 # v2
|
|
with:
|
|
args: --config ./lychee.toml README.md
|