Skip to content

Commit 8310733

Browse files
committed
update github actions
1 parent 9b59a90 commit 8310733

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.github/workflows/draft-pdf.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: Draft PDF
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
# - '*' # matches every branch that doesn't contain a '/'
6+
# - '*/*' # matches every branch containing a single '/'
7+
# - '**' # matches every branch
8+
# - '!master' # excludes master
9+
- paper
310

411
jobs:
512
paper:

.github/workflows/python-package.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,22 @@
44
name: Python package
55

66
on:
7+
# push:
8+
# branches: [ "master" ]
9+
# pull_request:
10+
# branches: [ "master" ]
711
push:
8-
branches: [ "master" ]
12+
branches:
13+
# - '*' # matches every branch that doesn't contain a '/'
14+
# - '*/*' # matches every branch containing a single '/'
15+
- '**' # matches every branch
16+
# - '!master' # excludes master
917
pull_request:
10-
branches: [ "master" ]
18+
branches:
19+
# - '*' # matches every branch that doesn't contain a '/'
20+
# - '*/*' # matches every branch containing a single '/'
21+
- '**' # matches every branch
22+
# - '!master' # excludes master
1123

1224
jobs:
1325
build:

0 commit comments

Comments
 (0)