Skip to content

chore: release v1.0.0 #4

chore: release v1.0.0

chore: release v1.0.0 #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust Toolchain
run: |
rustup toolchain install stable --profile minimal
rustup component add clippy
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Test
run: cargo test
- name: Doc
run: RUSTDOCFLAGS='-D warnings' cargo doc --no-deps --document-private-items