File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change 35
35
ini-values : memory_limit=512M, xdebug.mode=off
36
36
tools : composer:${{ env.COMPOSER_VERSION }}
37
37
38
- - name : Get Composer cache directory
39
- id : composer-cache
40
- run : echo "::set-output name=dir::$(composer config cache-files-dir)"
41
-
42
- - name : Restore Composer cache
43
- uses : actions/cache@v2
44
- with :
45
- path : ${{ steps.composer-cache.outputs.dir }}
46
- key : composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
47
- restore-keys : composer-${{ runner.os }}-${{ matrix.php-version }}-
48
-
49
38
- name : Install dependencies
50
39
run : composer install --no-interaction --prefer-dist --no-progress
51
40
80
69
with :
81
70
php-version : ${{ matrix.php-version }}
82
71
83
- - name : Get Composer cache directory
84
- id : composer-cache
85
- run : echo "::set-output name=dir::$(composer config cache-files-dir)"
86
-
87
- - name : Restore Composer cache
88
- uses : actions/cache@v2
89
- with :
90
- path : ${{ steps.composer-cache.outputs.dir }}
91
- key : composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
92
- restore-keys : composer-${{ runner.os }}-${{ matrix.php-version }}-
93
-
94
72
- name : Install dependencies
95
- run : |
96
- composer install --no-interaction --prefer-dist --no-progress
73
+ run : composer install --no-interaction --prefer-dist --no-progress
97
74
98
75
- name : Run PHP-CS-Fixer
99
76
run : php vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php --verbose --dry-run
You can’t perform that action at this time.
0 commit comments