Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

mark repo as moved

mark repo as moved #16

Workflow file for this run

name: test coverage
on: [push, pull_request]
jobs:
test:
name: cargo xtask cov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: installing prerequisites
run: cargo install grcov
- run: rustup component add llvm-tools-preview
- name: testing with coverage instrumentation
run: cargo xtask cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}