Skip to content

Bump

Bump #145

Workflow file for this run

---
name: Rust
# yamllint disable-line rule:truthy
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose
- name: Build
run: cargo build --verbose
- name: Lint
run: |
cargo fmt -- $(find src -name '*.rs') --check && \
cargo fmt -- --check
- name: Build documentation
run: cargo doc --verbose