Skip to content

Commit

Permalink
chore: fixes constrains no workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jan 20, 2024
1 parent 5aa3b91 commit ac5d6c1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ jobs:
exclude:
- php: '8.1'
symfony: '7.0'
- symfony: '6.4'
os: 'windows-latest'

name: PHP ${{ matrix.php }} - Symfony ~${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }}
name: PHP ${{ matrix.php }} - Symfony ^${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }}

steps:
- name: Checkout
Expand All @@ -43,7 +41,7 @@ jobs:
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
run: composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:^${{ matrix.symfony }}"
run: composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:~${{ matrix.symfony }}"

- name: Unit Tests
run: composer test:unit
Expand Down

0 comments on commit ac5d6c1

Please sign in to comment.