Add documentation #22
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: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
# Set `RUST_NIGHTLY_TOOLCHAIN` once globally to silence linter. Overwritten in jobs. | |
# For context see https://github.com/github/vscode-github-actions/issues/96 | |
RUST_NIGHTLY_TOOLCHAIN: nightly | |
jobs: | |
cargo-careful: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "RUST_NIGHTLY_TOOLCHAIN=$(awk '/^channel\s*=\s*".*"$/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' rust-toolchain.toml)" >> $GITHUB_ENV | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
- run: | | |
mkdir -p .github/caching | |
cargo search cargo-careful | awk '/^cargo-careful/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' > .github/caching/cargo-careful.lock | |
- id: cache-cargo-careful | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.tool_cache }}/cargo-careful/bin | |
key: cargo-careful-bin-${{ hashFiles('.github/caching/cargo-careful.lock') }} | |
- if: steps.cache-cargo-careful.outputs.cache-hit != 'true' | |
run: cargo install --root ${{ runner.tool_cache }}/cargo-careful --force cargo-careful | |
- run: echo "${{ runner.tool_cache }}/cargo-careful/bin" >> $GITHUB_PATH | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} careful test | |
cargo-deny: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
- bans licenses sources | |
continue-on-error: ${{ matrix.checks == 'advisories' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
command: check ${{ matrix.checks }} | |
cargo-fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "RUST_NIGHTLY_TOOLCHAIN=$(awk '/^channel\s*=\s*".*"$/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' rust-toolchain.toml)" >> $GITHUB_ENV | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
components: rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} fmt --all -- --check | |
cargo-clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "RUST_NIGHTLY_TOOLCHAIN=$(awk '/^channel\s*=\s*".*"$/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' rust-toolchain.toml)" >> $GITHUB_ENV | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- uses: giraffate/clippy-action@v1 | |
with: | |
reporter: "github-pr-review" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
clippy_flags: -- -D warnings | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} clippy -- -D warnings | |
cargo-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo doc --no-deps --package moveref | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./target/doc | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
cargo-test: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test | |
cargo-test-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "RUST_NIGHTLY_TOOLCHAIN=$(awk '/^channel\s*=\s*".*"$/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' rust-toolchain.toml)" >> $GITHUB_ENV | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
- run: | | |
mkdir -p .github/caching | |
cargo search cargo-tarpaulin | awk '/^cargo-tarpaulin/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' > .github/caching/cargo-tarpaulin.lock | |
- id: cache-cargo-tarpaulin | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.tool_cache }}/cargo-tarpaulin/bin | |
key: cargo-tarpaulin-bin-${{ hashFiles('.github/caching/cargo-tarpaulin.lock') }} | |
- if: steps.cache-cargo-tarpaulin.outputs.cache-hit != 'true' | |
run: cargo install --root ${{ runner.tool_cache }}/cargo-tarpaulin --force cargo-tarpaulin | |
- run: echo "${{ runner.tool_cache }}/cargo-tarpaulin/bin" >> $GITHUB_PATH | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} tarpaulin --verbose --workspace --timeout 120 --out Xml | |
- uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: true | |
cargo-miri: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "RUST_NIGHTLY_TOOLCHAIN=$(awk '/^channel\s*=\s*".*"$/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' rust-toolchain.toml)" >> $GITHUB_ENV | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
components: miri | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} miri test | |
cargo-valgrind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: | | |
mkdir -p .github/caching | |
cargo search cargo-valgrind | awk '/^cargo-valgrind/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' > .github/caching/cargo-valgrind.lock | |
- id: cache-cargo-valgrind | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.tool_cache }}/cargo-valgrind/bin | |
key: cargo-valgrind-bin-${{ hashFiles('.github/caching/cargo-valgrind.lock') }} | |
- if: steps.cache-cargo-valgrind.outputs.cache-hit != 'true' | |
run: cargo install --root ${{ runner.tool_cache }}/cargo-valgrind --force cargo-valgrind | |
- run: echo "${{ runner.tool_cache }}/cargo-valgrind/bin" >> $GITHUB_PATH | |
- uses: Swatinem/rust-cache@v2 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: valgrind | |
version: 1.0 | |
- run: cargo valgrind test --features valgrind |