19
19
os :
20
20
- ubuntu-latest
21
21
- windows-latest
22
+ - macos-latest
22
23
php :
23
24
- ' 7.4'
24
25
- ' 8.0'
35
36
if : matrix.os == 'ubuntu-latest'
36
37
run : sudo apt-get install unzip p7zip-full
37
38
39
+ -
40
+ name : Install windows dependencies
41
+ if : matrix.os == 'windows-latest'
42
+ run : choco install zip unzip 7zip
43
+
44
+ -
45
+ name : Install macos dependencies
46
+ if : matrix.os == 'macos-latest'
47
+ run : brew install zip unzip p7zip
48
+
38
49
-
39
50
name : Install PHP with extensions
40
51
uses : shivammathur/setup-php@v2
@@ -46,20 +57,20 @@ jobs:
46
57
tools : composer:v2
47
58
48
59
-
49
- name : Determine composer cache directory on Linux
50
- if : matrix.os == 'ubuntu-latest'
60
+ name : Determine composer cache directory on Linux or MacOS
61
+ if : matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
51
62
run : echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
52
63
53
- -
54
- name : Set coverage args
55
- if : matrix.os == 'ubuntu-latest' && matrix.php == '8.0'
56
- run : echo "PHPUNIT_COVERAGE=1" >> $GITHUB_ENV
57
-
58
64
-
59
65
name : Determine composer cache directory on Windows
60
66
if : matrix.os == 'windows-latest'
61
67
run : echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
62
68
69
+ -
70
+ name : Set coverage args
71
+ if : matrix.os == 'ubuntu-latest' && matrix.php == '8.0'
72
+ run : echo "PHPUNIT_COVERAGE=1" >> $GITHUB_ENV
73
+
63
74
-
64
75
name : Cache composer dependencies
65
76
uses : actions/cache@v2
0 commit comments