Skip to content

Commit 4557eb5

Browse files
committed
fixup! Run Actions also on push
1 parent b405a26 commit 4557eb5

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

.github/workflows/black_format.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Black format check
22

3-
defaults: &file_paths
4-
- '.github/workflows/black_format.yml'
5-
- '**.py'
6-
73
on:
84
pull_request:
9-
paths: *file_paths
5+
paths:
6+
- '.github/workflows/black_format.yml'
7+
- '**.py'
108
push:
11-
paths: *file_paths
9+
paths:
10+
- '.github/workflows/black_format.yml'
11+
- '**.py'
1212

1313
jobs:
1414
black-format-check:

.github/workflows/pythonpackage.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
name: Test textual-dev
22

3-
defaults: &file_paths
4-
- '.github/workflows/pythonpackage.yml'
5-
- '**.py'
6-
- '**.pyi'
7-
- '**.css'
8-
- '**.lock'
9-
- 'Makefile'
10-
113
on:
124
pull_request:
13-
paths: *file_paths
5+
paths:
6+
- '.github/workflows/pythonpackage.yml'
7+
- '**.py'
8+
- '**.pyi'
9+
- '**.css'
10+
- '**.lock'
11+
- 'Makefile'
1412
push:
15-
paths: *file_paths
13+
paths:
14+
- '.github/workflows/pythonpackage.yml'
15+
- '**.py'
16+
- '**.pyi'
17+
- '**.css'
18+
- '**.lock'
19+
- 'Makefile'
1620

1721
jobs:
1822
build:

0 commit comments

Comments
 (0)