Skip to content

Commit

Permalink
Restrict CI to PRs and pushes/tags on master only (#511)
Browse files Browse the repository at this point in the history
Previously we were running CI for every PR twice, from the PR and push
triggers.
  • Loading branch information
JamesWrigley authored Oct 16, 2024
1 parent 2c52e0f commit 8ed2dd2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: CI
on:
- push
- pull_request
push:
branches:
- master
tags: ['*']
pull_request:

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand Down

0 comments on commit 8ed2dd2

Please sign in to comment.