We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5201f0a commit c072f1aCopy full SHA for c072f1a
2 files changed
.github/workflows/ci.yml
@@ -166,9 +166,13 @@ jobs:
166
runs-on: ubuntu-latest
167
steps:
168
- uses: actions/checkout@v4
169
- - name: Link Checker
170
- uses: peter-evans/link-checker@v1
+ - name: Restore lychee cache
+ uses: actions/cache@v4
171
with:
172
- args: -v -r *.md
173
- - name: Fail if there were link errors
174
- run: exit ${{ steps.lc.outputs.exit_code }}
+ path: .lycheecache
+ key: cache-lychee-${{ github.sha }}
+ restore-keys: cache-lychee-
175
+ - name: Run lychee
176
+ uses: lycheeverse/lychee-action@v2
177
+ with:
178
+ args: "--base . --cache --max-cache-age 1d --max-concurrency 1 ."
.gitignore
@@ -11,3 +11,6 @@
11
12
#build artifacts
13
cryptoki-sys/pkcs11-precompile.h
14
+
15
+#link checker
16
+.lycheecache
0 commit comments