Skip to content

Commit d353fe8

Browse files
authored
ci: only run ci once (#88)
* ignore Manifest.toml * ci: on-push event only run on master branch * ci: run ci on tags
1 parent 29c1dc7 commit d353fe8

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/CI.yml

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ docs/build/
44
*.jl.mem
55
deps/deps.jl
66
.DS_Store
7+
Manifest.toml

0 commit comments

Comments
 (0)