Skip to content

Commit

Permalink
ci(lint): install composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpi committed Oct 26, 2022
1 parent 6f0bb43 commit 5f57e63
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5f57e63

Please sign in to comment.