Skip to content

Commit 29af55d

Browse files
authored
Merge pull request #408 from Michael-F-Bryan/book-linkcheck
Enabled the link checker
2 parents 2c94b0e + 09fd6b4 commit 29af55d

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ jobs:
3535
- name: Install mdbook
3636
run: cd book && curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz | tar xz
3737

38+
- name: Install mdbook-linkcheck
39+
run: |
40+
cd book
41+
curl -L https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.5.0/mdbook-linkcheck-v0.5.0-x86_64-unknown-linux-gnu.tar.gz | tar xz
42+
# Add the book directory to the $PATH
43+
echo "::add-path::$GITHUB_WORKSPACE/book"
44+
3845
- name: Execute tests for Chalk book
3946
run: cd book && ./mdbook test
4047

book/book.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@ authors = []
33
language = "en"
44
multilingual = false
55
src = "src"
6+
7+
[output.html]
8+
9+
[output.linkcheck]
10+
follow-web-links = true

book/src/engine/logic/coinduction.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,6 @@ This is true for all `A, B`
9595
* When all subgoals have been tested, and there are remaining delayed co-inductive subgoals, this is propogated up, marking the current `Strand` as co-inductive
9696
* When the co-inductive `Strand`s reach the root table, we only then pursue an answer
9797

98-
### Failing tests
99-
100-
* Tests were added for the tricky cases above:
101-
* [First](https://github.com/rust-lang/chalk/pull/272/commits/7be2d42c6ea36dd4416774d6872c43e3988f05bd#diff-721709466568566f24fc2e8634c40dcbR140)
102-
* [Second](https://github.com/rust-lang/chalk/pull/272/commits/7be2d42c6ea36dd4416774d6872c43e3988f05bd#diff-721709466568566f24fc2e8634c40dcbR171)
103-
* Both *are* provable to have no solutions, but are returned as ambiguous
104-
10598
## Niko's proposed solution
10699

107100
### High-level idea

0 commit comments

Comments
 (0)