Skip to content

Commit

Permalink
chore: fix workflow on section
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Sep 12, 2023
1 parent 6d678ff commit c6862c2
Show file tree
Hide file tree
Showing 7 changed files with 92 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deptrac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ name: Deptrac

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'depfile.yaml'
- '.github/workflows/deptrac.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'depfile.yaml'
- '.github/workflows/deptrac.yml'

jobs:
deptrac:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/phpcsfixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@ name: PHPCSFixer

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- '.github/workflows/phpcsfixer.yml'
push:
branches:
- develop
paths:
- '**.php'
- '.github/workflows/phpcsfixer.yml'

jobs:
phpcsfixer:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ name: PHPStan

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'phpstan*'
- '.github/workflows/phpstan.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'phpstan*'
- '.github/workflows/phpstan.yml'

jobs:
phpstan:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ name: PHPUnit

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'phpunit*'
- '.github/workflows/phpunit.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'phpunit*'
- '.github/workflows/phpunit.yml'

jobs:
phpunit:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ name: Psalm

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'psalm*'
- '.github/workflows/psalm.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'psalm*'
- '.github/workflows/psalm.yml'

jobs:
psalm:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ name: Rector

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'rector.php'
- '.github/workflows/rector.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- 'rector.php'
- '.github/workflows/rector.yml'

jobs:
rector:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/unused.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@ name: Unused

on:
pull_request:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- '.github/workflows/unused.yml'
push:
branches:
- develop
paths:
- '**.php'
- 'composer.*'
- '.github/workflows/unused.yml'

jobs:
unused:
Expand Down

0 comments on commit c6862c2

Please sign in to comment.