test(compatibility-suite): Implement V4 scenarios #1056
Workflow file for this run
This file contains 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: Pact-PHP Code Analysis & Test | |
on: | |
push: | |
pull_request: | |
# Once on the first of the month at 06:00 UTC | |
schedule: | |
- cron: 0 6 1 * * | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
php-cs: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.2' ] | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: 'locked' | |
- name: Code Style Analysis | |
run: composer run lint | |
- name: Static Code Analysis | |
run: composer run static-code-analysis | |
test: | |
runs-on: ${{ matrix.operating-system }} | |
needs: | |
- php-cs | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ ubuntu-latest, macos-latest, windows-latest ] | |
php: [ '8.0', '8.1', '8.2' ] | |
dependencies: [ 'lowest', 'locked' ] | |
timeout-minutes: 5 | |
name: PHP ${{ matrix.php }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
extensions: sockets, curl, zip, ffi | |
php-version: ${{ matrix.php }} | |
coverage: none | |
ini-values: ${{ matrix.operating-system == 'windows-latest' && 'opcache.enable=0 opcache.enable_cli=0' || '' }} | |
- name: Composer install | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
- name: Composer test | |
run: composer test |