-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
After merging #2195, I realized that mdbook-linkcheck
runs on all languages. This is despite our best efforts in build.yml
where we only install the tool on known-good languages:
comprehensive-rust/.github/workflows/build.yml
Lines 150 to 153 in ad9b41c
- name: Install mdbook-linkcheck | |
# Opt-in for checking links in translations - add the language below. | |
if: contains(fromJSON('["en", ]'), matrix.language) | |
run: cargo install mdbook-linkcheck --locked --version 0.7.7 |
The problem is likely due to caching: while we only store the cache when building the English version, we use the cache for all languages.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working