Skip to content

CARGO_INCREMENTAL=0 for gcov #2

CARGO_INCREMENTAL=0 for gcov

CARGO_INCREMENTAL=0 for gcov #2

Workflow file for this run

on: push
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install minimal nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --no-fail-fast
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- name: Gather coverage information
id: coverage
uses: actions-rs/[email protected]
- name: Upload coverage information
uses: codecov/codecov-action@v3
with:
files: ${{ steps.cov.outputs.report }}
verbose: true