Skip to content

fix(.github/codecov): Ignore aws-lc-rs-fips for codecov #582

fix(.github/codecov): Ignore aws-lc-rs-fips for codecov

fix(.github/codecov): Ignore aws-lc-rs-fips for codecov #582

Workflow file for this run

name: Coverage
on:
push:
branches: ['main', '0.8.x']
pull_request:
jobs:
coverage:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-llvm-cov
- shell: bash
run: |
cargo llvm-cov \
--features="arbitrary,async-io,async-std,aws-lc-rs,direct-log,fast-apple-datapath,futures-io,json-output,lock_tracking,log,platform-verifier,ring,runtime-async-std,runtime-smol,runtime-tokio,rustls,rustls-aws-lc-rs,rustls-log,rustls-ring,serde,serde_json,smol,tracing" \
--workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true