-
Notifications
You must be signed in to change notification settings - Fork 379
Testing overhaul #26
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
Testing overhaul #26
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple of points on triggers for actions, but otherwise looks like what we discussed and seems to work. As a sanity check I made a branch based on this one but with an intentional bug. The tests caught it, so I'm happy: https://github.com/github/codeql-action/actions/runs/101616470
|
||
on: [pull_request] | ||
on: [push] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we want these to run against pull requests? Running on both push
and pull_request
would make sense to me.
@@ -3,20 +3,115 @@ name: "Integration Testing" | |||
on: [push] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should run on pull_request
too, right?
This PR changes how we do integration testing. We decided to not run integration tests agains open source repos, and instead run them against synthetic mini repos stored in the tests folder.
Merge / deployment checklist