Skip to content
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

Enable tests for PRs that don't merge into main or develop #765

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
12 changes: 11 additions & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
name: compile code and tests

on:
# if you wish to skip running CI please don't change this section, instead
# prefix the following notation in the title of your commit message e.g.,
#
# [skip ci] my commit message
#
# For more information, please read the GitHub
# [documentation](https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/skipping-workflow-runs)
#
# Note: You will not be able to merge into develop or main without running CI. To run CI either:
# - edit the last commit message using `git commit --amend` and remove the tag "[skip ci]" or,
# - create a new commit without a "[skip ci]" tag
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TomMelt to look into draft PRs. If not, add a comment here for how to ignore certain branches.

paths:
- '.github/workflows/test_suite.yml'
- '**.cdl'
Expand Down
Loading