Don't run duplicate CI tasks on every PR

The "pull_request" action already runs on pushes to any branch with an open PR,
so only run the "push" action on the "master" branch.
This commit is contained in:
Brian Helba 2021-10-25 09:02:06 -04:00
parent 96ef5cc182
commit 7e4b425ea3

View file

@ -1,6 +1,10 @@
name: Test
on: [push, pull_request]
on:
pull_request:
push:
branches:
- master
jobs:
build: