Skip to content

Commit

Permalink
ci: validate that all used references are defined (#2032)
Browse files Browse the repository at this point in the history
ci: validate that all used references are defined
  • Loading branch information
carols10cents authored Oct 1, 2019
2 parents 5b2740e + 46022c1 commit 627f267
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ echo 'Building...'
mdbook build
echo 'Linting for local file paths...'
cargo run --bin lfp src
echo 'Validating references'
for file in src/*.md ; do
echo Checking references in $file
cargo run --quiet --bin link2print < $file > /dev/null
done

0 comments on commit 627f267

Please sign in to comment.