Skip to content

Fix typo in ch07-02 quiz #323

Fix typo in ch07-02 quiz

Fix typo in ch07-02 quiz #323

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
# TODO: make a version that runs on pull_request
env:
RUST_LIB_BACKTRACE: 1
RAYON_NUM_THREADS: 1
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 6.7.0
- name: Update rustup
run: rustup self update
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install 1.70 -c rust-docs
rustup default 1.70
- name: Install Depot
run: curl https://raw.githubusercontent.com/cognitive-engineering-lab/depot/main/scripts/install.sh | sh
- name: Install mdbook and mdbook-quiz
run: |
mkdir bin
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.25/mdbook-v0.4.25-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
curl -sSL https://github.com/cognitive-engineering-lab/mdbook-quiz/releases/download/v0.3.1/mdbook-quiz_x86_64-unknown-linux-gnu_full.tar.gz | tar -xz --directory=bin
echo "$(pwd)/bin" >> ${GITHUB_PATH}
- name: Report versions
run: |
rustup --version
rustc -Vv
mdbook --version
mdbook-quiz --version
- name: Install cargo-make
uses: davidB/rust-cargo-make@v1
- name: Install mdbook-aquascope
run: |
git clone https://github.com/cognitive-engineering-lab/aquascope
cd aquascope
cargo make install-mdbook
- name: Install js-extensions
run: |
cd js-extensions
pnpm init-repo
- name: Run mdbook tests
run: mdbook test
- name: Build mdbook
run: mdbook build
- name: Deploy to Github Pages
if: ${{ github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
cname: rust-book.cs.brown.edu