-
Notifications
You must be signed in to change notification settings - Fork 22
41 lines (38 loc) · 1 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches: ['master']
pull_request:
branches: ['*']
jobs:
php-tests:
name: Tests - PHP ${{ matrix.php }} with Symfony ${{ matrix.sf_version }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
max-parallel: 10
fail-fast: false
matrix:
php: ['8.2', '8.3']
sf_version: ['7.0.*']
include:
- php: '8.0'
sf_version: '5.4.*'
- php: '8.1'
sf_version: '6.4.*'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2, flex
coverage: none
ini-values: expose_php=1
- name: Install dependencies
run: 'composer update --no-interaction --prefer-dist --no-progress'
env:
SYMFONY_REQUIRE: ${{ matrix.sf_version }}
- name: Execute Unit Tests
run: 'vendor/bin/phpunit'