Skip to content

Commit 0974af3

Browse files
committed
Enclose the paths in single quotes
1 parent de64b5e commit 0974af3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/test-coding-standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
- cron: '0 0 * * *'
66
pull_request:
77
paths:
8-
- .github/workflows/test-coding-standards.yml
8+
- '.github/workflows/test-coding-standards.yml'
99
- '**.php'
1010
push:
1111
paths:
12-
- .github/workflows/test-coding-standards.yml
12+
- '.github/workflows/test-coding-standards.yml'
1313
- '**.php'
1414

1515
jobs:

.github/workflows/test-phpstan.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ on:
55
- cron: '0 0 * * *'
66
pull_request:
77
paths:
8-
- .github/workflows/test-phpstan.yml
8+
- '.github/workflows/test-phpstan.yml'
99
- '**.php'
10-
- extension.neon
11-
- phpstan.neon.dist
10+
- 'extension.neon'
11+
- 'phpstan.neon.dist'
1212
push:
1313
paths:
14-
- .github/workflows/test-phpstan.yml
14+
- '.github/workflows/test-phpstan.yml'
1515
- '**.php'
16-
- extension.neon
17-
- phpstan.neon.dist
16+
- 'extension.neon'
17+
- 'phpstan.neon.dist'
1818

1919
jobs:
2020
static-analyses:

.github/workflows/test-phpunit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ on:
55
- cron: '0 0 * * *'
66
pull_request:
77
paths:
8-
- .github/workflows/test-phpunit.yml
8+
- '.github/workflows/test-phpunit.yml'
99
- '**.php'
10-
- phpunit.dist.xml
10+
- 'phpunit.dist.xml'
1111
push:
1212
paths:
13-
- .github/workflows/test-phpunit.yml
13+
- '.github/workflows/test-phpunit.yml'
1414
- '**.php'
15-
- phpunit.dist.xml
15+
- 'phpunit.dist.xml'
1616

1717
jobs:
1818
extension-tests:

0 commit comments

Comments
 (0)