Skip to content

chore: bump version to 0.2.0 #14

chore: bump version to 0.2.0

chore: bump version to 0.2.0 #14

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy, miri
- run: cargo +nightly fmt --check
- run: cargo clippy --no-default-features -- -D warnings
- run: cargo clippy --all-features --tests -- -D warnings
- run: cargo test --all-features
- run: cargo +nightly miri test --all-features