Skip to content

Commit 8ed2dd2

Browse files
authored
Restrict CI to PRs and pushes/tags on master only (#511)
Previously we were running CI for every PR twice, from the PR and push triggers.
1 parent 2c52e0f commit 8ed2dd2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: CI
22
on:
3-
- push
4-
- pull_request
3+
push:
4+
branches:
5+
- master
6+
tags: ['*']
7+
pull_request:
8+
59
jobs:
610
test:
711
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}

0 commit comments

Comments
 (0)