Skip to content

Commit 7edb7d1

Browse files
committed
- add MacOS and allow to fail
1 parent d3134cc commit 7edb7d1

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ on: [push, pull_request]
33
env:
44
timezone: UTC
55
jobs:
6-
build:
7-
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
6+
test:
7+
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
88
runs-on: ${{ matrix.os }}-latest
99
continue-on-error: ${{ matrix.experimental }}
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php-versions: [ '8.0', '8.1' ]
14-
os: [Ubuntu, MacOS]
13+
php: [ '8.0', '8.1' ]
14+
os: Ubuntu
1515
experimental: [false]
1616
include:
1717
- os: MacOS
18+
php: '8.0'
1819
experimental: true
19-
php-version: '8.0'
2020
- os: MacOS
21+
php: '8.1'
2122
experimental: true
22-
php-version: '8.1'
2323
steps:
2424
- name: Checkout code
2525
uses: actions/checkout@v2
2626

27-
- name: Setup PHP ${{ matrix.php-version }}
27+
- name: Setup PHP ${{ matrix.php }} (${{ matrix.os }})
2828
uses: shivammathur/setup-php@v2
2929
with:
30-
php-version: ${{ matrix.php-versions }}
30+
php-version: ${{ matrix.php }}
3131
tools: composer:v2, pecl
3232
coverage: pcov
3333
extensions: ctype dom igbinary libxml mbstring msgpack simplexml xml zip

0 commit comments

Comments
 (0)