Skip to content

Commit 3208577

Browse files
committed
Only run the workflows on the master branch
1 parent f239be3 commit 3208577

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
name: test
2-
on: [push, pull_request]
2+
3+
on:
4+
# Trigger the workflow on push or pull request,
5+
# but only for the master branch
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
branches:
11+
- master
12+
313
jobs:
414
test:
515
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)