Skip to content

Bump actions/deploy-pages from 2 to 3 #86

Bump actions/deploy-pages from 2 to 3

Bump actions/deploy-pages from 2 to 3 #86

Workflow file for this run

name: Lint
on:
push:
branches: ["main"]
pull_request:
jobs:
clippy-rustdoc:
name: Clippy & Rustdoc
runs-on: ubuntu-latest
steps:
- name: Install Rust
run: rustup toolchain install stable --profile minimal --component clippy
- name: Checkout
uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Run Rustdoc
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --no-deps --document-private-items --examples