Merge pull request #14 from MauricioFauth/twig-3.12 #54
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: Run tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-php: | |
name: Test on PHP ${{ matrix.php-version }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
experimental: [false] | |
composer-options: [''] | |
os: [ubuntu-latest] | |
include: | |
- { php-version: '8.4', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring | |
coverage: xdebug | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: highest | |
composer-options: ${{ matrix.composer-options }} | |
- name: Run PHP tests | |
run: composer run phpunit | |
- name: Send coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: unit-${{ matrix.php-version }}-${{ matrix.os }} | |
name: phpunit-${{ matrix.php-version }}-${{ matrix.os }} |