This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
Remove --locked flag when build #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust Code Coverage | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '*' | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install grcov | |
run: | | |
curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - | |
sudo mv grcov /usr/local/bin/ | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install llvm-tools | |
run: rustup component add llvm-tools-preview | |
- name: Build and Test with Coverage | |
run: | | |
export RUSTFLAGS="-Cinstrument-coverage" | |
cargo build --verbose | |
LLVM_PROFILE_FILE="aws-sso-auth-%p-%m.profraw" cargo test --verbose | |
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v2 | |
with: | |
file: lcov.info |