Skip to content

fix docs build

fix docs build #265

Workflow file for this run

name: Rust
on:
push:
paths:
- "**.rs"
- "Cargo.toml"
- ".github/workflows/rust.yml"
pull_request:
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: fmt
run: cargo fmt --check
- name: clippy
run: cargo clippy