chore(deps): update dependency guzzlehttp/guzzle to v8 #1259
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: Compatibility Suite | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'release/**' | |
| - '!release/9.x' | |
| pull_request: | |
| branches: | |
| - master | |
| - 'release/**' | |
| - '!release/9.x' | |
| env: | |
| PACT_LOGLEVEL: debug | |
| PACT_DO_NOT_TRACK: true | |
| jobs: | |
| v1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 | |
| with: | |
| php-version: 8.2 | |
| coverage: none | |
| - uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V1 --colors | |
| v2: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 | |
| with: | |
| php-version: 8.2 | |
| coverage: none | |
| - uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V2 --colors | |
| v3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 | |
| with: | |
| php-version: 8.2 | |
| coverage: none | |
| - uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V3 --name '/^((?!binary body \(negative|Message provider).)*$/' --colors | |
| v4: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 | |
| with: | |
| php-version: 8.2 | |
| coverage: none | |
| - uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 | |
| - uses: pact-foundation/pact-cli@66cc3a4dde9a76a2ee5a0ea7ea322f442c348571 # main | |
| - name: Install sync-message-test plugin | |
| run: pact plugin install https://github.com/tienvx/pact-sync-message-test-plugin/releases/tag/0.2.0 -y | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V4 --colors |