-
Notifications
You must be signed in to change notification settings - Fork 14
45 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
42
43
44
name: CI
on:
pull_request:
jobs:
build:
name: Test
runs-on: Ubuntu-20.04
strategy:
fail-fast: false
matrix:
php: [ '8.1', '8.2', '8.3' ]
strategy: [ 'highest' ]
sf_version: ['4.*', '5.*', '6.*']
include:
- php: 8.1
strategy: 'lowest'
- php: 8.2
sf_version: '7.*'
- php: 8.3
sf_version: '7.*'
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: Run tests
run: ./vendor/bin/phpunit