@@ -14,31 +14,31 @@ jobs:
14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : ['7.4', '8.0', '8.1']
18
- laravel : ['^8.0']
17
+ php : [ '7.4', '8.0', '8.1' ]
18
+ laravel : [ '^8.0' ]
19
19
20
20
steps :
21
- - name : Checkout Code
22
- uses : actions/checkout@v2
23
-
24
- - name : Setup PHP
25
- uses : shivammathur/setup-php@v2
26
- with :
27
- php-version : ${{ matrix.php }}
28
- extensions : dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
29
- tools : composer:v2
30
- coverage : none
31
- ini-values : error_reporting=E_ALL
32
-
33
- - name : Set Laravel Version
34
- run : composer require "laravel/framework:${{ matrix.laravel }}" --no-update -n
35
-
36
- - name : Install dependencies
37
- uses : nick-invision/retry@v1
38
- with :
39
- timeout_minutes : 5
40
- max_attempts : 5
41
- command : composer install --no-suggest --prefer-dist -n -o
42
-
43
- - name : Execute tests
44
- run : vendor/bin/phpunit
21
+ - name : Checkout Code
22
+ uses : actions/checkout@v2
23
+
24
+ - name : Setup PHP
25
+ uses : shivammathur/setup-php@v2
26
+ with :
27
+ php-version : ${{ matrix.php }}
28
+ extensions : dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
29
+ tools : composer:v2
30
+ coverage : none
31
+ ini-values : error_reporting=E_ALL
32
+
33
+ - name : Set Laravel Version
34
+ run : composer require "laravel/framework:${{ matrix.laravel }}" --no-update -n
35
+
36
+ - name : Install dependencies
37
+ uses : nick-invision/retry@v1
38
+ with :
39
+ timeout_minutes : 5
40
+ max_attempts : 5
41
+ command : composer install --no-suggest --prefer-dist -n -o
42
+
43
+ - name : Execute tests
44
+ run : vendor/bin/phpunit
0 commit comments