Skip to content

Commit 7f19291

Browse files
committed
wip
1 parent cc0d213 commit 7f19291

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/php-cs-fixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
args: --config=.php-cs-fixer.php --allow-risky=yes
1919

2020
- name: Commit changes
21-
uses: stefanzweifel/git-auto-commit-action@v4
21+
uses: stefanzweifel/git-auto-commit-action@v5
2222
with:
2323
commit_message: Fix styling

.github/workflows/run-tests-mysql.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
MYSQL_DATABASE: db_test_laravel
1717
ports:
1818
- 33306:3306
19-
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
19+
options: >-
20+
--health-cmd="mysqladmin ping"
21+
--health-interval=10s
22+
--health-timeout=5s
23+
--health-retries=3
2024
2125
strategy:
2226
fail-fast: false

.github/workflows/run-tests-postgres.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ jobs:
1717
POSTGRES_DB: db_test_laravel
1818
ports:
1919
- 55432:5432
20-
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
20+
options: >-
21+
--health-cmd pg_isready
22+
--health-interval 10s
23+
--health-timeout 5s
24+
--health-retries 5
2125
2226
strategy:
2327
fail-fast: false

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,5 @@ jobs:
107107
- name: Execute tests (Unit and Feature tests) via PHPUnit
108108
env:
109109
DB_CONNECTION: sqlite
110-
DB_DATABASE: ':memory:'
110+
DB_DATABASE: ":memory:"
111111
run: vendor/bin/phpunit --testdox

0 commit comments

Comments
 (0)