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 c51463a commit fc397a8Copy full SHA for fc397a8
.github/workflows/integration-tests.yml
@@ -63,15 +63,6 @@ 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
@@ -91,6 +82,10 @@ jobs:
91
82
- name: Install dependencies
92
83
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
93
84
85
+ - name: 'Setup Redis'
86
+ if: ${{ matrix.os != 'windows-latest' }}
87
+ uses: supercharge/[email protected]
88
+
94
89
- name: 'Setup MySQL'
95
90
if: ${{ matrix.database == 'mysql' }}
96
uses: ankane/setup-mysql@v1
0 commit comments