Skip to content

Drop PHP 7.x-8.0, add PHP 8.1-8.3 support #25

Drop PHP 7.x-8.0, add PHP 8.1-8.3 support

Drop PHP 7.x-8.0, add PHP 8.1-8.3 support #25

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.1', '8.2', '8.3' ]
strategy: [ 'highest' ]
sf_version: ['']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: flex
- name: Download dependencies
uses: ramsey/composer-install@v1
env:
SYMFONY_REQUIRE: ${{ matrix.sf_version }}
with:
dependency-versions: ${{ matrix.strategy }}
composer-options: --no-interaction --prefer-dist --optimize-autoloader
- name: Install PHPUnit
run: ./vendor/bin/simple-phpunit install
- name: Run tests
run: ./vendor/bin/simple-phpunit