Skip to content

Commit ca5185c

Browse files
committed
undo changes to Github test actions
1 parent 395fb6d commit ca5185c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
12-
11+
runs-on: ${{ matrix.os }}
1312
strategy:
1413
fail-fast: true
1514
matrix:
@@ -54,11 +53,9 @@ jobs:
5453
MYSQL_PASSWORD: secret
5554
MYSQL_DATABASE: laravel_schema_rules
5655
MYSQL_ROOT_PASSWORD: secretroot
57-
options: >-
58-
--health-cmd="mysqladmin ping"
59-
--health-interval=10s
60-
--health-timeout=5s
61-
--health-retries=3
56+
ports:
57+
- 3306
58+
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
6259

6360
steps:
6461
- name: Checkout code
@@ -69,6 +66,7 @@ jobs:
6966
with:
7067
php-version: ${{ matrix.php }}
7168
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
69+
coverage: none
7270

7371
- name: Setup problem matchers
7472
run: |
@@ -88,4 +86,4 @@ jobs:
8886
env:
8987
DB_USERNAME: user
9088
DB_PASSWORD: secret
91-
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
89+
DB_PORT: ${{ job.services.mysql.ports[3306] }}

0 commit comments

Comments
 (0)