From 1c4d47825b0ebc6027f04b8672ccabe83cbd8cee Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Fri, 9 Sep 2022 15:27:31 +0200 Subject: [PATCH] Run code coverage on every PR In this way we can check how much of a PR is covered by the tests, making the review process slightly easier. --- .github/workflows/code_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 5e650459..9f5cfd0f 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -1,4 +1,4 @@ -on: [push] +on: [push, pull_request] name: Code Coverage