Merge pull request #732 from tienvx/test-repeated-matching-protobuf #910
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 | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| PACT_LOGLEVEL: debug | |
| PACT_DO_NOT_TRACK: true | |
| jobs: | |
| v1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - uses: ramsey/composer-install@v3 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V1 --colors | |
| v2: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - uses: ramsey/composer-install@v3 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V2 --colors | |
| v3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - uses: ramsey/composer-install@v3 | |
| - 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| submodules: recursive | |
| - uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - uses: ramsey/composer-install@v3 | |
| - name: Run Behat | |
| run: vendor/bin/behat compatibility-suite/pact-compatibility-suite/features/V4 --colors |