Skip to content

Commit c55e43c

Browse files
authored
ci: Update unit tests workflow to run on push to main (#2953)
1 parent 3b655e4 commit c55e43c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/build_profiler.yml

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ on:
77
- "feature/**"
88
paths-ignore:
99
- ".github/**" # skip changes to the .github folder (workflows, etc.)
10+
11+
# needs to run on every push to main to keep CodeCov in sync
12+
push:
13+
branches:
14+
- main
15+
paths-ignore:
16+
- ".github/**" # skip changes to the .github folder (workflows, etc.)
1017

1118
# this workflow can be called from another workflow
1219
workflow_call:

.github/workflows/run_unit_tests.yml

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on:
55
branches:
66
- main
77
- "feature/**"
8+
9+
# needs to run on every push to main to keep CodeCov in sync
10+
push:
11+
branches:
12+
- main
813

914
workflow_dispatch: # allows for manual trigger
1015

0 commit comments

Comments
 (0)