From 14057ec66d9aa13b0c0cac5dea5ba432fa9c4cac Mon Sep 17 00:00:00 2001 From: Libor M Date: Fri, 10 Nov 2023 15:44:02 +0100 Subject: [PATCH] tests for multiple symfony http client versions --- .github/workflows/unit-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 2aae92c..5c09148 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -13,6 +13,7 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] php: [ '8.1', '8.2', '8.3' ] + httpclient: [ '6.1', '6.2', '6.3' ] steps: - uses: actions/checkout@v2 @@ -23,7 +24,7 @@ jobs: php-version: "${{ matrix.php }}" - name: Install dependencies - run: composer install --prefer-dist --no-progress + run: composer install --prefer-dist --no-progress symfony/http-client ${{ matrix.httpclient }} - name: Run PHPUnit run: composer test