Add support for passing explicit null values in array shapes #19
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: | |
check_composer: | |
name: Check composer.json | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.1' | |
- run: composer validate --strict --no-check-lock | |
static_analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.1' | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction | |
- run: vendor/bin/phpstan analyze | |
coding_standards: | |
name: Coding standards | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.1' | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction | |
- run: vendor/bin/php-cs-fixer fix --dry-run --show-progress=dots --no-interaction | |
tests: | |
name: "Tests on PHP ${{ matrix.php }}${{ matrix.name_suffix }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2' ] | |
min_stability: [ '' ] | |
name_suffix: [ '' ] | |
composer_flags: [ '' ] | |
include: | |
- php: '8.2' | |
min_stability: 'dev' | |
name_suffix: ' (dev deps)' | |
- php: '8.1' | |
min_stability: '' | |
name_suffix: ' (lowest deps)' | |
composer_flags: '--prefer-lowest' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php }}" | |
- name: Configure stability | |
if: "matrix.min_stability != ''" | |
run: composer config minimum-stability "${{ matrix.min_stability }}" | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction ${{ matrix.composer_flags }} | |
- name: Run tests | |
run: vendor/bin/phpunit --colors=always --exclude-group=integration | |
integration_tests: | |
name: "Integration tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
php-version: "8.2" | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction | |
- name: Run tests | |
run: vendor/bin/phpunit --colors=always --group=integration --display-skipped | |
env: | |
AMAZON_INCENTIVES_ACCESS_KEY: ${{ secrets.AMAZON_INCENTIVES_ACCESS_KEY }} | |
AMAZON_INCENTIVES_PARTNER_ID: ${{ secrets.AMAZON_INCENTIVES_PARTNER_ID }} | |
AMAZON_INCENTIVES_SECRET_KEY: ${{ secrets.AMAZON_INCENTIVES_SECRET_KEY }} |