Move Guzzle back to require-dev dependencies #266
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: PHP ${{ matrix.php-versions }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest] | |
| php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: echo "The ${{ github.repository }} repository has been cloned to the runner." | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| - name: Check PHP Version | |
| run: php -v | |
| - uses: php-actions/composer@v6 | |
| with: | |
| php_version: ${{ matrix.php-versions }} | |
| - run: echo "Composer dependencies have been installed" | |
| - name: Run Tests | |
| run: vendor/bin/phpunit |