We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e0377 commit c51463aCopy full SHA for c51463a
.github/workflows/integration-tests.yml
@@ -63,6 +63,15 @@ jobs:
63
64
name: "Run tests: PHP ${{ matrix.php }} - ${{ matrix.database }} - ${{ matrix.stability }} - ${{ matrix.os }}"
65
66
+ services:
67
+ redis:
68
+ image: redis
69
+ options: >-
70
+ --health-cmd "redis-cli ping"
71
+ --health-interval 10s
72
+ --health-timeout 5s
73
+ --health-retries 5
74
+
75
steps:
76
- name: Checkout code
77
uses: actions/checkout@v4
@@ -82,9 +91,6 @@ jobs:
82
91
- name: Install dependencies
83
92
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
84
93
85
- - name: 'Setup Redis'
86
- uses: supercharge/[email protected]
87
-
88
94
- name: 'Setup MySQL'
89
95
if: ${{ matrix.database == 'mysql' }}
90
96
uses: ankane/setup-mysql@v1
0 commit comments