Skip to content

Commit

Permalink
fix build (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen-G authored May 7, 2021
1 parent 9a5e775 commit f86d402
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
coverage: xdebug

- name: Install dependencies
run: composer update --prefer-dist --no-suggest --no-interaction --ignore-platform-reqs --no-scripts
run: composer update --prefer-dist --no-suggest --no-interaction --no-scripts
if: ${{ matrix.experimental == false }}

- name: Install experimental dependencies
run: composer update --prefer-dist --no-suggest --no-interaction --no-scripts --ignore-platform-reqs
if: ${{ matrix.experimental == true }}

- name: Check codestyle
run: vendor/bin/ecs check --config=easy-coding-standard.php --no-progress-bar .
Expand Down

0 comments on commit f86d402

Please sign in to comment.