Skip to content

Enable use of aws-lc-rs instead of ring #12

Enable use of aws-lc-rs instead of ring

Enable use of aws-lc-rs instead of ring #12

Workflow file for this run

name: Coverage
on:
push:
branches: ['main', '0.8.x']
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
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true