Update GitHub actions workflows #1
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
defaults: | |
run: | |
shell: bash | |
env: | |
RUSTFLAGS: --deny warnings | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust Toolchain Components | |
uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
override: true | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Clippy | |
run: cargo clippy --all-features --all-targets --workspace | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Check for Forbidden Words | |
run: | | |
sudo apt-get install ripgrep | |
./bin/forbid | |
- name: Check Generated | |
run: | | |
apt install help2man | |
cargo run --package gen -- --bin target/debug/imdl all | |
git diff --no-ext-diff --exit-code | |
- name: Install `mdbook` | |
uses: peaceiris/actions-mdbook@v2 | |
with: | |
mdbook-version: 0.4.40 | |
- name: Build Book | |
run: | | |
cargo run --package gen -- --bin target/debug/imdl book | |
mdbook build book --dest-dir ../www/book |