From f4802d5aeaa79b8821c9d4a412bb23c4b0968875 Mon Sep 17 00:00:00 2001 From: Levi Bostian Date: Thu, 28 Sep 2023 10:38:55 -0500 Subject: [PATCH] ci: enable code coverage for main branch for better reports --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f6deb793..95b10aa85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,9 @@ name: Tests -on: [pull_request] +on: + pull_request: + push: + branches: [main] # code coverage reporting needs to be on main so all PRs can compare against it. concurrency: # cancel previous workflow run if one exists. group: ${{ github.workflow }}-${{ github.ref }}