Skip to content

Commit

Permalink
Remove locked dependency that's the same with highest one
Browse files Browse the repository at this point in the history
  • Loading branch information
tienvx committed Jul 17, 2022
1 parent 81371bc commit 4f2a17f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:

- name: Install PHP dependencies
uses: ramsey/composer-install@v1
with:
dependency-versions: 'locked'

- name: Run PHP CS Fixer
run: php-cs-fixer fix --diff --dry-run
Expand Down Expand Up @@ -51,7 +49,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
dependencies: [ 'lowest', 'locked', 'highest' ]
dependencies: [ 'lowest', 'highest' ]
name: PHP ${{ matrix.php-versions }} with ${{ matrix.dependencies }} dependencies
steps:
- name: Setup PHP
Expand All @@ -78,7 +76,7 @@ jobs:
run: |
composer global require php-coveralls/php-coveralls
php-coveralls --coverage_clover=clover.xml -v
if: matrix.php-versions == '8.0' && matrix.dependencies == 'locked'
if: matrix.php-versions == '8.0' && matrix.dependencies == 'highest'

test-js:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4f2a17f

Please sign in to comment.