From 6821d7a2c83202ec0a7ea25e71c1a13abdc39ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=ABlija=20Pe=C4=8Derska?= Date: Tue, 10 Oct 2023 18:46:00 +0200 Subject: [PATCH] Running coverage on all branches Running coverage on all branches on a push, and additionally on main on a pull request --- .github/workflows/test_coverage.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index ab5daab..fc4dee1 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -2,7 +2,9 @@ name: tests with coverage on: push: - branches: [ "main" ] + branches: + - "main" + - "**" pull_request: branches: [ "main" ]