Skip to content

Commit

Permalink
cicd(coverage): rename crate
Browse files Browse the repository at this point in the history
  • Loading branch information
dcuenot committed Apr 30, 2020
1 parent 678b83e commit 240d64d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/push_and_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
lint:
name: Code coverage
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "display-in-gitlab-merge-request"
name = "sonar_qg"
version = "0.1.0"
authors = ["Damien Cuenot <[email protected]>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extern crate display_in_gitlab_merge_request;
extern crate sonar_qg;

fn main() {
println!("-- Rating + Coverage/Density");
Expand All @@ -12,7 +12,7 @@ fn main() {
}

fn plop(id: &str) {
match display_in_gitlab_merge_request::yolo(id) {
match sonar_qg::yolo(id) {
Ok(result) => {
for x in &result.project_status.conditions {
println!("{}", x.display());
Expand Down

1 comment on commit 240d64d

@dcuenot
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quick workaround due to this issue: actions-rs/grcov#51

Please sign in to comment.