Skip to content

Commit 51435cf

Browse files
committed
Update ezsql-macos.yml
1 parent 2f3c668 commit 51435cf

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ezsql-macos.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ on:
1212
jobs:
1313
windows:
1414
name: macOS (PHP ${{ matrix.php-versions }} CI)
15-
runs-on: macos-11.0
15+
runs-on: macos-latest
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
operating-system: [macos-11.0]
20-
php-versions: ['7.1', '8.0']
19+
operating-system: [macos-latest]
20+
php-versions: ['7.3']
2121

2222
steps:
2323
- name: Checkout
@@ -26,7 +26,7 @@ jobs:
2626
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
2727
with:
2828
php-version: ${{ matrix.php-versions }}
29-
extensions: mbstring, fileinfo, mysqli, pdo_mysql, pgsql, pdo_pgsql, xdebug
29+
extensions: mbstring, fileinfo, mysqli, pdo_mysql, pgsql, pdo_pgsql, sqlite3, pdo_sqlite, xdebug
3030
coverage: xdebug
3131
- name: Brew Install MySQL
3232
run: |
@@ -53,7 +53,9 @@ jobs:
5353
psql -U postgres --command="CREATE USER ez_test PASSWORD 'ezTest'" --command="\du"
5454
createdb --owner=ez_test ez_test
5555
- name: Install dependencies
56-
run: composer update
56+
run: |
57+
composer self-update
58+
composer update
5759
- name: Test with phpunit
5860
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
5961
- name: Submit code coverage

0 commit comments

Comments
 (0)