Skip to content

Commit ed9492c

Browse files
committed
ci: also fire tests on main (default branch is main, not master)
The original tests.yml triggered only on push to master and PRs into master. Pushing this branch and opening PR #232 against main produced 'no checks reported' because the workflow has no matching trigger. Add main to both branches: arrays. Keep master as well so the workflow keeps firing on stale branches that may still receive commits.
1 parent d437b2f commit ed9492c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Tests
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main, master]
66
tags: ['v*']
77
pull_request:
8-
branches: [master]
8+
branches: [main, master]
99
workflow_call:
1010

1111
jobs:

0 commit comments

Comments
 (0)