Skip to content

Commit

Permalink
chore: add --ignore-platform-reqs flag to avoid Termwind version e…
Browse files Browse the repository at this point in the history
…rrors.
  • Loading branch information
xiCO2k committed Dec 17, 2024
1 parent 417c018 commit b22661f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
coverage: none

- name: Install PHP dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress
run: composer update --${{ matrix.dependency-version }} --ignore-platform-reqs --no-interaction --no-progress

- name: Run Pint
run: php vendor/bin/pint --test -v
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
coverage: none

- name: Install Dependencies
run: composer update --prefer-stable --no-interaction --no-progress
run: composer update --prefer-stable --ignore-platform-reqs --no-interaction --no-progress

- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress
run: composer update --${{ matrix.dependency-version }} --ignore-platform-reqs --no-interaction --no-progress

- name: Integration Tests
run: php vendor/bin/pest --colors=always

0 comments on commit b22661f

Please sign in to comment.