Skip to content

Commit

Permalink
Normalize DB passwords in tests; fix style in cs-fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Oct 23, 2024
1 parent 55b4253 commit 7d0b684
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/cs-fix.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
on:
---

on: # yamllint disable-line rule:truthy
push:
branches:
- '*'
Expand All @@ -10,3 +12,5 @@ jobs:
permissions:
contents: write
uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master

...
10 changes: 5 additions & 5 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
host: '127.0.0.1',
port: 13306,
user: 'root',
password: 'SSpaSS__1',
password: 'root',
),
queryCache: true
),
Expand All @@ -34,7 +34,7 @@
host: '127.0.0.1',
port: 15432,
user: 'postgres',
password: 'SSpaSS__1',
password: 'root',
),
schema: 'public',
queryCache: true,
Expand All @@ -45,7 +45,7 @@
host: '127.0.0.1',
port: 11433,
user: 'SA',
password: 'SSpaSS__1'
password: 'root'
),
queryCache: true
),
Expand All @@ -60,7 +60,7 @@
host: '127.0.0.1',
port: 15432,
user: 'postgres',
password: 'SSpaSS__1',
password: 'root',
),
schema: 'public',
driver: Database\Tests\Stub\Driver\PostgresWrapDriver::class,
Expand All @@ -83,7 +83,7 @@
host: '127.0.0.1',
port: 11433,
user: 'SA',
password: 'SSpaSS__1'
password: 'root'
),
driver: Database\Tests\Stub\Driver\MSSQLWrapDriver::class,
queryCache: true,
Expand Down

0 comments on commit 7d0b684

Please sign in to comment.