mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-25 22:20:31 +00:00
ci: add code coverage action (#209)
This runs the coverage and uploads the output to https://app.codecov.io/gh/tui-rs-revival/ratatui/
This commit is contained in:
parent
21ca38d9e9
commit
a68d621f2d
1 changed files with 20 additions and 0 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
@ -74,3 +74,23 @@ jobs:
|
|||
commits: "HEAD"
|
||||
- name: "Check typos"
|
||||
uses: crate-ci/typos@master
|
||||
|
||||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: llvm-tools
|
||||
- name: cargo install cargo-llvm-cov
|
||||
# Cargo subcommand to easily use LLVM source-based code coverage.
|
||||
# see https://github.com/taiki-e/cargo-llvm-cov
|
||||
# and https://github.com/taiki-e/install-action
|
||||
uses: taiki-e/install-action@cargo-llvm-cov
|
||||
- name: cargo llvm-cov
|
||||
run: cargo llvm-cov --all-features --lcov --output-path lcov.info
|
||||
- name: Upload to codecov.io
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
fail_ci_if_error: true
|
||||
|
|
Loading…
Reference in a new issue