File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 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 }}
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
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
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 : |
You can’t perform that action at this time.
0 commit comments