.github/workflows: run tests on the right branch

I copy/paste-d from another repo earlier and didn't realize
this repo uses 'master' as its main branch.

Signed-off-by: Brad Fitzpatrick <brad@danga.com>
This commit is contained in:
Brad Fitzpatrick 2024-01-13 17:11:57 -08:00
parent a911bc8060
commit fc64ec92e5
5 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- "main" - "master"
pull_request: pull_request:
# all PRs on all branches # all PRs on all branches
name: "tests/lint" name: "tests/lint"

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- "main" - "master"
pull_request: pull_request:
# all PRs on all branches # all PRs on all branches
name: "tests/linux" name: "tests/linux"

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- "main" - "master"
pull_request: pull_request:
# all PRs on all branches # all PRs on all branches
name: "tests/macos" name: "tests/macos"

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- "main" - "master"
pull_request: pull_request:
# all PRs on all branches # all PRs on all branches
name: "tests/tidy" name: "tests/tidy"

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- "main" - "master"
pull_request: pull_request:
# all PRs on all branches # all PRs on all branches
name: "tests/windows" name: "tests/windows"