mirror of https://github.com/rust-lang/nomicon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
974 B
34 lines
974 B
name: CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Update rustup
|
|
run: rustup self update
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup toolchain install nightly -c rust-docs
|
|
rustup default nightly
|
|
- name: Install mdbook
|
|
run: |
|
|
mkdir bin
|
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
|
echo "##[add-path]$(pwd)/bin"
|
|
- name: Report versions
|
|
run: |
|
|
rustup --version
|
|
rustc -Vv
|
|
mdbook --version
|
|
- name: Run tests
|
|
run: mdbook test
|
|
- name: Check for broken links
|
|
run: |
|
|
curl -sSLo linkcheck.sh \
|
|
https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
|
|
sh linkcheck.sh --all nomicon
|