We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22686f4 commit 9f46bbeCopy full SHA for 9f46bbe
1 file changed
.github/workflows/test.yaml
@@ -30,12 +30,13 @@ jobs:
30
with:
31
compose-file: docker-compose.yaml
32
services: ${{ matrix.database.service }}
33
- - uses: stringbean/docker-healthcheck-action@v1
34
- with:
35
- container: data-access-kit-src_${{ matrix.database.service }}_1
36
- wait-time: 30
37
- require-status: running
38
- require-healthy: true
+ - name: Wait for container health
+ run: |
+ timeout 30s bash -c 'until docker inspect --format="{{.State.Health.Status}}" data-access-kit-src-${{ matrix.database.service }}-1 | grep -q "healthy"; do
+ echo "Waiting for container to be healthy..."
+ sleep 2
+ done'
39
+ if: matrix.database.service != 'sqlite'
40
- uses: shivammathur/setup-php@v2
41
42
php-version: '8.3'
0 commit comments