Skip to content

Commit

Permalink
ci: Update unit tests workflow to run on push to main (#2953)
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr authored Jan 15, 2025
1 parent 3b655e4 commit c55e43c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_profiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ on:
- "feature/**"
paths-ignore:
- ".github/**" # skip changes to the .github folder (workflows, etc.)

# needs to run on every push to main to keep CodeCov in sync
push:
branches:
- main
paths-ignore:
- ".github/**" # skip changes to the .github folder (workflows, etc.)

# this workflow can be called from another workflow
workflow_call:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
branches:
- main
- "feature/**"

# needs to run on every push to main to keep CodeCov in sync
push:
branches:
- main

workflow_dispatch: # allows for manual trigger

Expand Down

0 comments on commit c55e43c

Please sign in to comment.