Skip to content

feat: test coverage part one #27

feat: test coverage part one

feat: test coverage part one #27

Workflow file for this run

name: Test
on: pull_request
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
override: true
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
with:
shared-key: "cache"
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked
env:
RUSTFLAGS: --cfg tracing_unstable
RUST_BACKTRACE: 1