Skip to content

Update actions/checkout GitHub Action to v4 #35

Update actions/checkout GitHub Action to v4

Update actions/checkout GitHub Action to v4 #35

Workflow file for this run

name: Continuous Integration
on:
pull_request: null
push:
branches:
- master
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
env:
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
strategy:
fail-fast: false
matrix:
php:
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
symfony-version:
- 3.4.*
- 4.4.*
- 5.*
- 6.*
dependencies:
- highest
- lowest
exclude:
- php: '7.2'
symfony-version: 6.*
dependencies: highest
- php: '7.3'
symfony-version: 6.*
dependencies: highest
- php: '7.4'
symfony-version: 6.*
dependencies: highest
- php: '7.2'
symfony-version: 6.*
dependencies: lowest
- php: '7.3'
symfony-version: 6.*
dependencies: lowest
- php: '7.4'
symfony-version: 6.*
dependencies: lowest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: flex
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: --prefer-dist