Skip to content

Commit 377c028

Browse files
committed
Update workflows
1 parent 326a5a2 commit 377c028

File tree

5 files changed

+50
-74
lines changed

5 files changed

+50
-74
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
on:
22
pull_request:
3-
paths-ignore:
4-
- 'docs/**'
5-
- 'README.md'
6-
- 'CHANGELOG.md'
7-
- '.gitignore'
8-
- '.gitattributes'
9-
- 'infection.json.dist'
10-
- 'psalm.xml'
3+
paths:
4+
- 'src/**'
5+
- 'tests/**'
6+
- '.github/workflows/build.yml'
7+
- 'composer.json'
8+
- 'phpunit.xml.dist'
119

1210
push:
1311
branches: ['master']
14-
paths-ignore:
15-
- 'docs/**'
16-
- 'README.md'
17-
- 'CHANGELOG.md'
18-
- '.gitignore'
19-
- '.gitattributes'
20-
- 'infection.json.dist'
21-
- 'psalm.xml'
12+
paths:
13+
- 'src/**'
14+
- 'tests/**'
15+
- '.github/workflows/build.yml'
16+
- 'composer.json'
17+
- 'phpunit.xml.dist'
2218

2319
name: build
2420

@@ -41,6 +37,7 @@ jobs:
4137
- 8.0
4238
- 8.1
4339
- 8.2
40+
- 8.3
4441

4542
pgsql:
4643
- 9

.github/workflows/composer-require-checker.yml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
11
on:
22
pull_request:
3-
paths-ignore:
4-
- 'docs/**'
5-
- 'README.md'
6-
- 'CHANGELOG.md'
7-
- '.gitignore'
8-
- '.gitattributes'
9-
- 'infection.json.dist'
10-
- 'phpunit.xml.dist'
11-
- 'psalm.xml'
3+
paths:
4+
- 'src/**'
5+
- '.github/workflows/composer-require-checker.yml'
6+
- 'composer.json'
127

138
push:
14-
paths-ignore:
15-
- 'docs/**'
16-
- 'README.md'
17-
- 'CHANGELOG.md'
18-
- '.gitignore'
19-
- '.gitattributes'
20-
- 'infection.json.dist'
21-
- 'phpunit.xml.dist'
22-
- 'psalm.xml'
9+
branches: ['master']
10+
paths:
11+
- 'src/**'
12+
- '.github/workflows/composer-require-checker.yml'
13+
- 'composer.json'
2314

2415
name: Composer require checker
2516

@@ -41,6 +32,7 @@ jobs:
4132
- 8.0
4233
- 8.1
4334
- 8.2
35+
- 8.3
4436

4537
steps:
4638
- name: Checkout.

.github/workflows/mutation.yml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
on:
22
pull_request:
3-
paths-ignore:
4-
- 'docs/**'
5-
- 'README.md'
6-
- 'CHANGELOG.md'
7-
- '.gitignore'
8-
- '.gitattributes'
9-
- 'psalm.xml'
3+
paths:
4+
- 'src/**'
5+
- '.github/workflows/mutation.yml'
6+
- 'composer.json'
107

118
push:
12-
paths-ignore:
13-
- 'docs/**'
14-
- 'README.md'
15-
- 'CHANGELOG.md'
16-
- '.gitignore'
17-
- '.gitattributes'
18-
- 'psalm.xml'
9+
branches: ['master']
10+
paths:
11+
- 'src/**'
12+
- '.github/workflows/mutation.yml'
13+
- 'composer.json'
1914

2015
name: mutation test
2116

@@ -35,11 +30,11 @@ jobs:
3530
- ubuntu-latest
3631

3732
php:
38-
- 8.1
33+
- 8.3
3934

4035
services:
4136
postgres:
42-
image: postgres:15
37+
image: postgres:16
4338
env:
4439
POSTGRES_USER: root
4540
POSTGRES_PASSWORD: root

.github/workflows/rector.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
on:
22
pull_request:
3-
paths-ignore:
4-
- 'docs/**'
5-
- 'README.md'
6-
- 'CHANGELOG.md'
7-
- '.gitignore'
8-
- '.gitattributes'
9-
- 'infection.json.dist'
10-
- 'psalm.xml'
3+
paths:
4+
- 'src/**'
5+
- '.github/workflows/rector.yml'
6+
- 'composer.json'
7+
- 'rector.php'
118

129
name: rector
1310

.github/workflows/static.yml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
on:
22
pull_request:
3-
paths-ignore:
4-
- 'docs/**'
5-
- 'README.md'
6-
- 'CHANGELOG.md'
7-
- '.gitignore'
8-
- '.gitattributes'
9-
- 'infection.json.dist'
10-
- 'phpunit.xml.dist'
3+
paths:
4+
- 'src/**'
5+
- '.github/workflows/static.yml'
6+
- 'psalm*.xml'
7+
- 'composer.json'
118

129
push:
13-
paths-ignore:
14-
- 'docs/**'
15-
- 'README.md'
16-
- 'CHANGELOG.md'
17-
- '.gitignore'
18-
- '.gitattributes'
19-
- 'infection.json.dist'
20-
- 'phpunit.xml.dist'
10+
branches: ['master']
11+
paths:
12+
- 'src/**'
13+
- '.github/workflows/static.yml'
14+
- 'psalm*.xml'
15+
- 'composer.json'
2116

2217
name: static analysis
2318

0 commit comments

Comments
 (0)