Skip to content

Commit d555be5

Browse files
committed
fixing tests
1 parent f26b050 commit d555be5

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,12 @@ jobs:
6060
redis-version: ${{ matrix.redis-version }}
6161

6262
- name: Start Redis Sentinel
63-
run: docker run -d --name redis-sentinel --link redis:redis \
64-
-v $PWD/sentinel.conf:/sentinel.conf \
65-
redis:${{ matrix.redis-version }} \
66-
redis-server sentinel.conf --sentinel
63+
run: |
64+
docker run -d --name redis-sentinel \
65+
--link redis:redis \
66+
-v $PWD/sentinel.conf:/sentinel.conf \
67+
redis:${{ matrix.redis-version }} \
68+
redis-server sentinel.conf --sentinel
6769
6870
- name: Execute tests (PDO with Sqlite)
6971
run: vendor/bin/phpunit

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"github-actions.workflows.pinned.workflows": []
2+
"github-actions.workflows.pinned.workflows": [],
3+
"githubPullRequests.ignoredPullRequestBranches": [
4+
"main"
5+
]
36
}

0 commit comments

Comments
 (0)