Update tests.yml
PHP Tests / php-tests (push) Has been cancelled

This commit is contained in:
Nyan Lin Paing
2026-08-20 00:08:33 +07:00
parent dfffdd343b
commit 54b35ee087
+5
View File
@@ -64,6 +64,11 @@ jobs:
- name: Generate app key
run: php artisan key:generate
- name: Install postgresql-client
run: |
apt-get update
apt-get install -y postgresql-client
- name: Wait for Postgres
run: |
until pg_isready -h 127.0.0.1 -p 5432 -U root; do