From 59c8314f9dc1cfb1e1fe24a544c624cf2e5bc255 Mon Sep 17 00:00:00 2001 From: "Michael P. Jung" Date: Wed, 27 Oct 2021 17:30:00 +0200 Subject: [PATCH 1/3] Add codecov to CI --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 558e43f6..42709abe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -216,6 +216,13 @@ jobs: AMQP__URL: amqp://deadpool:deadpool@127.0.0.1/deadpool + ################# + # Code coverage # + ################# + + codecov: + name: Rust Codecov + uses: maboesanman/rust-codecov@v0 ############ From a43a8a4880d41ab29ad32a2ce8c6ed8e4947187f Mon Sep 17 00:00:00 2001 From: "Michael P. Jung" Date: Tue, 22 Mar 2022 18:41:15 +0100 Subject: [PATCH 2/3] Use codecov/codecov-action@v2 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42709abe..736f941a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -220,9 +220,9 @@ jobs: # Code coverage # ################# + # https://github.com/codecov/codecov-action codecov: - name: Rust Codecov - uses: maboesanman/rust-codecov@v0 + uses: codecov/codecov-action@v2 ############ From d7ae2e435584b69de11730448e94bcc8e64eac16 Mon Sep 17 00:00:00 2001 From: "Michael P. Jung" Date: Tue, 22 Mar 2022 18:46:06 +0100 Subject: [PATCH 3/3] Fix codecov config --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 736f941a..a888a07b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -222,7 +222,9 @@ jobs: # https://github.com/codecov/codecov-action codecov: - uses: codecov/codecov-action@v2 + steps: + - uses: actions/checkout@master + - uses: codecov/codecov-action@v2 ############