Start part 1: intro and concurrency chapter #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
run: rustup update stable && rustup default stable | |
- run: sudo apt-get update && sudo apt-get install aspell aspell-en | |
- name: Install mdbook | |
uses: taiki-e/install-action@mdbook | |
- name: Install mdbook-linkcheck | |
uses: taiki-e/install-action@mdbook-linkcheck | |
- run: bash ci/spellcheck.sh list | |
- run: mdbook build | |
- run: cargo test --all --manifest-path=./examples/Cargo.toml --target-dir ./target | |
- uses: rust-lang/simpleinfra/github-actions/static-websites@master | |
with: | |
deploy_dir: book/html | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'rust-lang' |