File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- name : Checkout code
11
- uses : actions/checkout@v2
11
+ uses : actions/checkout@v4
12
+
13
+ - name : .php-cs-fixer.cache
14
+ uses : actions/cache@v4
15
+ with :
16
+ path : .php-cs-fixer.cache
17
+ key : ${{ runner.OS }}-${{ github.repository }}-php-cs-fixer-${{ github.sha }}
18
+ restore-keys : |
19
+ ${{ runner.OS }}-${{ github.repository }}-php-cs-fixer-
12
20
13
21
- name : Check style
14
22
uses : docker://oskarstark/php-cs-fixer-ga
15
23
with :
16
- args : --config=.php-cs-fixer.php -- dry-run --diff
24
+ args : --dry-run --diff
Original file line number Diff line number Diff line change 1
1
bin /geckodriver *
2
2
storage
3
3
vendor
4
- .php_cs .cache
4
+ .php-cs-fixer .cache
5
5
composer.lock
6
6
coverage
7
7
.phpunit.result.cache
Original file line number Diff line number Diff line change 43
43
},
44
44
"scripts" : {
45
45
"download" : " vendor/bin/phpunit tests/DownloadBinaries.php" ,
46
+ "lint" : " ./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots --diff" ,
46
47
"test" : " vendor/bin/phpunit"
47
48
},
48
49
"extra" : {
You can’t perform that action at this time.
0 commit comments