Skip to content

chore(deps): lock file maintenance #56

chore(deps): lock file maintenance

chore(deps): lock file maintenance #56

Workflow file for this run

name: Run and upload unit tests
on:
push:
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: taiki-e/install-action@nextest
- name: Run and collect test
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info
- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}