chore: fixes constrains no workflow

This commit is contained in:
Nuno Maduro
2024-01-20 13:48:00 +00:00
parent 5aa3b91d56
commit ac5d6c1f67

View File

@ -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
@ -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