Skip to content

Commit 1b80b0b

Browse files
author
Olivier Dolbeau
committed
Update docker image used in github actions
1 parent 0b808fc commit 1b80b0b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/static.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
on: [push, pull_request]
2-
name: Static analysis
1+
name: Static code analysis
2+
3+
on: [pull_request]
4+
35
jobs:
46
phpstan:
5-
name: PHPStan
67
runs-on: ubuntu-latest
78
steps:
89
- uses: actions/checkout@master
9-
- name: PHPStan
10-
uses: docker://oskarstark/phpstan-ga
10+
- name: Run PHPStan
11+
uses: docker://jakzal/phpqa:php7.3-alpine
1112
with:
12-
args: analyze --no-progress
13+
args: phpstan analyze
1314

1415
php-cs-fixer:
15-
name: PHP-CS-Fixer
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@master
19-
- name: PHP-CS-Fixer
20-
uses: docker://oskarstark/php-cs-fixer-ga
19+
- name: Run PHP-CS-Fixer
20+
uses: docker://jakzal/phpqa:php7.3-alpine
2121
with:
22-
args: --dry-run --diff-format udiff
22+
args: php-cs-fixer fix --dry-run --diff-format udiff -vvv

0 commit comments

Comments
 (0)