docs: adds the initial documentation site #52
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: | |
- main | |
pull_request: | |
jobs: | |
format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update nightly && rustup default nightly | |
- name: Install rustfmt | |
run: rustup component add rustfmt | |
- run: cargo fmt -- --check | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update nightly && rustup default nightly | |
- name: Install clippy | |
run: rustup component add clippy | |
- run: cargo clippy --all-features -- --deny warnings | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update nightly && rustup default nightly | |
- run: cargo test --all-features | |
docs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update nightly && rustup default nightly | |
- run: cargo doc |