Skip to content

ci: fix ci

ci: fix ci #13

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