Skip to content

Merge pull request #365 from oat-sa/release-19.0.3 #237

Merge pull request #365 from oat-sa/release-19.0.3

Merge pull request #365 from oat-sa/release-19.0.3 #237

name: Continuous integration
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '7.4', '8.0', '8.1']
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-versions }}
- 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
run: php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-clover coverage.xml
- name: Push coverage report
uses: codecov/codecov-action@v2