Skip to content

0.2.2

0.2.2 #159

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt --check && cargo clippy --all-targets --all-features
- run: cargo check --all-features
- run: cargo test
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo install cargo-tarpaulin && cargo tarpaulin --out xml
- uses: codecov/codecov-action@v3