github: run tests on merge queue
Don't run checks on push to main since the tip of the merge queue is the same.
This commit is contained in:
parent
2d72dc125d
commit
63feab7d86
3 changed files with 3 additions and 3 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Checks
|
||||
|
||||
on: [pull_request, push]
|
||||
on: [pull_request, merge_group]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
2
.github/workflows/generate.yml
vendored
2
.github/workflows/generate.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Generate
|
||||
|
||||
on: [pull_request, push]
|
||||
on: [pull_request, push, merge_group]
|
||||
|
||||
jobs:
|
||||
generate_documentation:
|
||||
|
|
|
|||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Tests
|
||||
|
||||
on: [pull_request, push]
|
||||
on: [pull_request, merge_group]
|
||||
|
||||
jobs:
|
||||
test_suite:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue