-
Notifications
You must be signed in to change notification settings - Fork 93
43 lines (36 loc) · 992 Bytes
/
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
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', '8.4']
strategy: [ 'highest' ]
sf_version: ['']
include:
- php: 8.1
strategy: 'lowest'
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@v2
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