File tree Expand file tree Collapse file tree 1 file changed +19
-15
lines changed
Expand file tree Collapse file tree 1 file changed +19
-15
lines changed Original file line number Diff line number Diff line change 55 pull_request : {}
66
77jobs :
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 :
You can’t perform that action at this time.
0 commit comments