Skip to content

Commit

Permalink
Fix windows conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Jun 29, 2021
1 parent 8a2b9bf commit 0390594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:

- name: Install composer-require-checker
run: php -r 'file_put_contents("composer-require-checker.phar", file_get_contents("https://github.com/maglnet/ComposerRequireChecker/releases/download/${{ matrix.composer-require-checker-version }}/composer-require-checker.phar"));'
if: matrix.os != 'windows-latest'
if: runner.os != 'Windows'

- name: Run composer-require-checker
run: php composer-require-checker.phar check composer.json --config-file $PWD/composer-require-check.json
if: matrix.os != 'windows-latest'
if: runner.os != 'Windows'

0 comments on commit 0390594

Please sign in to comment.