-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alex Chi <[email protected]>
- Loading branch information
1 parent
b81f5ab
commit a46682f
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Coverage | ||
|
||
[cargo-llvm-cov](https://github.com/taiki-e/cargo-llvm-cov) has support for nextest. | ||
Simply run the following command to generate coverage report with nextest: | ||
|
||
``` | ||
cargo install cargo-llvm-cov | ||
cargo llvm-cov nextest | ||
``` | ||
|
||
## GitHub Action | ||
|
||
You may install cargo-llvm-cov and nextest on GitHub Action, and then run llvm-cov with nextest. | ||
|
||
```yaml | ||
- uses: taiki-e/install-action@cargo-llvm-cov | ||
- uses: taiki-e/install-action@nextest | ||
``` |