Skip to content

fix: null-safe dereferencing of record-typed variables fields via the <fieldValue> operand #341

fix: null-safe dereferencing of record-typed variables fields via the <fieldValue> operand

fix: null-safe dereferencing of record-typed variables fields via the <fieldValue> operand #341

name: Continuous integration
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ develop ]
concurrency: ci-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
coverage: [ false ]
include:
- php-version: '8.4'
coverage: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref || github.ref_name }}
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
if: ${{ !matrix.coverage }}
run: vendor/bin/phpunit
- name: Run test suite with code coverage
if: ${{ matrix.coverage }}
run: php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-clover coverage.xml
- name: Push coverage report
if: ${{ matrix.coverage }}
uses: codecov/codecov-action@v2