Skip to content

ci: Update unit tests workflow to run on push to main #2953

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading