Skip to content

Release v0.1.0

Release v0.1.0 #9

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --check
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings