Skip to content

Commit

Permalink
Dont ignore platform reqs anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed Nov 23, 2023
1 parent d6acc28 commit a0aa5c8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyzers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
tools: 'composer:v2'
extensions: pcov, mbstring, posix, xdebug, dom, libxml, xml, xsl, xmlreader, xmlwriter
- name: Install dependencies
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
- name: Run the tests
run: composer run psalm
2 changes: 1 addition & 1 deletion .github/workflows/autoloader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
tools: 'composer:v2'
extensions: pcov, mbstring, posix
- name: Install dependencies
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
- name: Parse autoloader
run: composer run autoload
- name: Check if the autloader is up to date
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
tools: 'composer:v2'
extensions: pcov, mbstring, posix
- name: Install dependencies
run: composer --ignore-platform-req=php update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
- name: Run the tests
run: composer run cs
2 changes: 1 addition & 1 deletion .github/workflows/stress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
tools: 'composer:v2'
extensions: pcov, mbstring, posix, dom, libxml, xml, xsl, xmlreader, xmlwriter
- name: Install dependencies
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run the stress tests
run: composer run stress
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
ini-values: error_reporting=E_ALL
extensions: pcov, mbstring, posix, dom, libxml, xml, xsl, xmlreader, xmlwriter
- name: Install dependencies
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run the tests
run: composer run tests
- name: Check tests quality
Expand Down

0 comments on commit a0aa5c8

Please sign in to comment.