Skip to content

chore: bump version to v0.1.3 #8

chore: bump version to v0.1.3

chore: bump version to v0.1.3 #8

Workflow file for this run

name: CI
on:
pull_request:
merge_group:
workflow_dispatch:
workflow_call:
push:
branches:
- main
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
- run: cargo fmt --all --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo rustdoc --all-features -- -D warnings