ci(lint): install composer dependencies
This commit is contained in:
parent
6f0bb43314
commit
5f57e63fe4
1 changed files with 8 additions and 1 deletions
9
.github/workflows/lint.yaml
vendored
9
.github/workflows/lint.yaml
vendored
|
@ -21,9 +21,16 @@ jobs:
|
|||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: '8.1'
|
||||
php-version: "8.1"
|
||||
extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip
|
||||
tools: composer:v2
|
||||
coverage: none
|
||||
|
||||
- name: Setup .env
|
||||
run: cp .env.ci .env
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --no-interaction --no-progress --no-suggest --prefer-dist
|
||||
|
||||
- name: PHP CS Fixer
|
||||
run: vendor/bin/php-cs-fixer fix --dry-run --diff
|
||||
|
|
Loading…
Reference in a new issue