Skip to content

Commit 083d286

Browse files
committed
use ' instead of " if there is no need to
1 parent 4750b63 commit 083d286

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
schedule:
6-
- cron: "0 0 * * *"
6+
- cron: '0 0 * * *'
77

88
jobs:
99
docker-compose:
@@ -51,7 +51,7 @@ jobs:
5151
uses: docker://ghcr.io/chubbyphp/ci-php83:latest
5252
env:
5353
APP_ENV: phpunit
54-
POSTGRES_URI: "pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8"
54+
POSTGRES_URI: 'pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8'
5555
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
5757
php84:
@@ -76,7 +76,7 @@ jobs:
7676
uses: docker://ghcr.io/chubbyphp/ci-php84:latest
7777
env:
7878
APP_ENV: phpunit
79-
POSTGRES_URI: "pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8"
79+
POSTGRES_URI: 'pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8'
8080
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
8282
php85:
@@ -101,7 +101,7 @@ jobs:
101101
uses: docker://ghcr.io/chubbyphp/ci-php85:latest
102102
env:
103103
APP_ENV: phpunit
104-
POSTGRES_URI: "pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8"
104+
POSTGRES_URI: 'pgsql://petstore:KVKtkrTHhKuTJTor8pCP@172.17.0.1:5432/petstore?charset=utf8'
105105
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106106
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
107107
- name: sonarcloud.io

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
depends_on:
2626
- postgres
2727
extra_hosts:
28-
- "host.docker.internal:host-gateway"
28+
- 'host.docker.internal:host-gateway'
2929
ports:
3030
- '9003:9003'
3131
php-fluentd:
@@ -93,8 +93,8 @@ services:
9393
healthcheck:
9494
test:
9595
[
96-
"CMD-SHELL",
97-
"curl -sk https://localhost:9200 | grep -q 'Unauthorized'"
96+
'CMD-SHELL',
97+
'curl -sk https://localhost:9200 | grep -q "Unauthorized"'
9898
]
9999
interval: 10s
100100
timeout: 10s

0 commit comments

Comments
 (0)