Skip to content

Replace actions-rs workflows with maintained alternatives #3

Replace actions-rs workflows with maintained alternatives

Replace actions-rs workflows with maintained alternatives #3

name: Check Docs
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
rustdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
name: Install rust toolchain
- uses: Swatinem/rust-cache@v2
name: Add caching
- name: Check Documentation with Rustdoc
run: cargo doc --verbose --no-deps