Skip to content

Commit 333e861

Browse files
committed
changed CI config.
1 parent aacd6c0 commit 333e861

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ jobs:
1616
matrix:
1717
php: [7.4, 8.0 ]
1818
mysql: [5.7, 8.0]
19-
include:
20-
- composer_option: --ignore-platform-reqs
21-
exclude:
22-
- php: 8.0 # incompatible
19+
2320
services:
2421
mysql:
2522
image: mysql:${{ matrix.mysql }}
@@ -34,7 +31,6 @@ jobs:
3431
--health-timeout=5s
3532
--health-retries=3
3633
37-
name: Laravel ${{ matrix.laravel }} (PHP ${{ matrix.php }})
3834
steps:
3935
- uses: actions/checkout@v4
4036

@@ -59,6 +55,9 @@ jobs:
5955
php -v
6056
composer --version
6157
mysql --version || true
58+
59+
- name: Wait for MySQL
60+
run: |
6261
echo "Waiting for MySQL..."
6362
for i in {30..0}; do
6463
if mysqladmin ping -h 127.0.0.1 --silent; then
@@ -71,7 +70,7 @@ jobs:
7170
7271
- name: Install dependencies
7372
run: |
74-
composer install --no-interaction --prefer-dist --no-progress --verbose ${{ matrix.composer_option || '' }}
73+
composer install --no-interaction --prefer-dist --no-progress
7574
7675
- name: Prepare Code Climate Reporter
7776
run: |

0 commit comments

Comments
 (0)