Skip to content

test: code coverage with tarpaulin #130

test: code coverage with tarpaulin

test: code coverage with tarpaulin #130

name: Format, Lint, Test
on:
push:
branches:
- main
- next
- beta
pull_request:
branches:
- main
- next
- beta
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --workspace