Skip to content

Commit 83fe5d2

Browse files
committed
disable broken linkchecker CI test
1 parent b759842 commit 83fe5d2

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,25 @@ on:
55
pull_request: {}
66

77
jobs:
8-
linkcheck:
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: actions/checkout@v4
12-
with:
13-
fetch-depth: 0
14-
- uses: cachix/install-nix-action@v31
15-
with:
16-
nix_path: nixpkgs=channel:nixos-unstable
17-
- uses: cachix/cachix-action@v16
18-
with:
19-
name: nix-dev
20-
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
21-
- name: Run linkcheck
22-
run: nix-shell --run "make linkcheck"
8+
# The linkchecker runs into rate limits 100% of the time in CI for a very long time
9+
# It requires caching to not hit all endpoints each time.
10+
# Lychee might be an alternative that does that check:
11+
# https://github.com/nix-community/awesome-nix/blob/242818562cc0d2d1464f7ca06880d4902569647b/.github/workflows/check-link.yml#L24
12+
#linkcheck:
13+
# runs-on: ubuntu-latest
14+
# steps:
15+
# - uses: actions/checkout@v4
16+
# with:
17+
# fetch-depth: 0
18+
# - uses: cachix/install-nix-action@v31
19+
# with:
20+
# nix_path: nixpkgs=channel:nixos-unstable
21+
# - uses: cachix/cachix-action@v16
22+
# with:
23+
# name: nix-dev
24+
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
25+
# - name: Run linkcheck
26+
# run: nix-shell --run "make linkcheck"
2327
codeblock:
2428
runs-on: ubuntu-latest
2529
steps:

0 commit comments

Comments
 (0)