File tree 1 file changed +13
-14
lines changed
1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -4,27 +4,25 @@ on: ['push', 'pull_request']
4
4
5
5
jobs :
6
6
ci :
7
- runs-on : ${{ matrix.os }}
7
+ runs-on : ubuntu-latest
8
8
9
9
strategy :
10
10
fail-fast : true
11
11
matrix :
12
- os : [ubuntu-latest]
13
12
php : [8.1, 8.2, 8.3, 8.4]
14
- symfony : [5.4.*, 6.3.*, 6. 4.*, 7.0.*]
13
+ symfony : [5.4.*, 6.4.*, 7.0.*]
15
14
dependency-version : [prefer-lowest, prefer-stable]
16
- include :
17
- - php : " 8.1"
18
- symfony : " ^5.4"
19
- - php : " 8.1"
20
- symfony : " ^6.3"
21
- - php : " 8.1"
22
- symfony : " ^6.4"
23
15
exclude :
24
- - php : " 8.1"
25
- symfony : " ^7.0"
26
-
27
- name : Tests P${{ matrix.php }} - SF${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
16
+ - php : 8.1
17
+ symfony : 7.0.*
18
+ - php : 8.4
19
+ symfony : 5.4.*
20
+ - php : 8.4
21
+ symfony : 6.4.*
22
+ - php : 8.4
23
+ symfony : 7.0.*
24
+
25
+ name : Tests P${{ matrix.php }} - SF${{ matrix.symfony }} - ubuntu-latest - ${{ matrix.dependency-version }}
28
26
steps :
29
27
30
28
- name : Checkout
50
48
"symfony/dependency-injection:${{ matrix.symfony }}"
51
49
"symfony/http-kernel:${{ matrix.symfony }}"
52
50
--no-interaction --no-update
51
+
53
52
- name : Install Composer dependencies
54
53
run : composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist
55
54
You can’t perform that action at this time.
0 commit comments