Skip to content

chore: release 0.0.9 #36

chore: release 0.0.9

chore: release 0.0.9 #36

Workflow file for this run

on:
push:
paths:
- '**.rs'
- '**.toml'
- '**.yml'
- '.git*'
- 'Cargo.lock'
- 'README.md' # it's included in the crate root
branches:
- main
name: ci
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt, clippy
- name: cargo test
run: cargo test --lib --bins --tests
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings