forked from Behat/MinkExtension
-
Notifications
You must be signed in to change notification settings - Fork 30
57 lines (49 loc) · 1.77 KB
/
test.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Test
on:
push:
pull_request:
types: [opened, synchronize, edited, reopened]
jobs:
test:
name: PHP ${{ matrix.php-version }} + Symfony ${{ matrix.symfony-version }}
runs-on: ubuntu-20.04
continue-on-error: false
strategy:
fail-fast: false
matrix:
php-version:
- '7.4'
- '8.0'
- '8.1'
symfony-version:
- '4.4.*'
- '5.4.*'
- '6.4.*'
- '7.0.*'
exclude:
- php-version: '7.4'
symfony-version: '7.0.*'
- php-version: '8.0'
symfony-version: '6.4.*'
- php-version: '7.4'
symfony-version: '6.4.*'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
ini-values: "memory_limit=-1"
php-version: ${{ matrix.php-version }}
tools: composer:v2
- name: Validate composer.json
run: composer validate --no-check-lock
- name: Configure Symfony version
run: composer require --no-update "symfony/config:${{ matrix.symfony-version }}" "symfony/dependency-injection:${{ matrix.symfony-version }}"
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: PHPSpec
run: vendor/bin/phpspec run -f pretty
- name: Behat
run: vendor/bin/behat -fprogress --strict