File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,12 @@ jobs:
60
60
redis-version : ${{ matrix.redis-version }}
61
61
62
62
- 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
67
69
68
70
- name : Execute tests (PDO with Sqlite)
69
71
run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 1
1
{
2
- "github-actions.workflows.pinned.workflows" : []
2
+ "github-actions.workflows.pinned.workflows" : [],
3
+ "githubPullRequests.ignoredPullRequestBranches" : [
4
+ " main"
5
+ ]
3
6
}
You can’t perform that action at this time.
0 commit comments