We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b555a87 + 927ed09 commit 8bec46dCopy full SHA for 8bec46d
1 file changed
.github/actions/run-integration-tests/action.yaml
@@ -17,6 +17,16 @@ inputs:
17
runs:
18
using: composite
19
steps:
20
+ # Workaround for Docker issue in windows runner
21
+ # See <https://github.com/actions/runner-images/issues/13729#issuecomment-4183956802>
22
+ - if: runner.os == 'Windows'
23
+ shell: pwsh
24
+ run: |
25
+ $dockerState = Get-Service -Name "docker"
26
+ if ($dockerState.Status -ne "Running") {
27
+ Start-Service -Name "docker"
28
+ }
29
+
30
- shell: bash -l -eo pipefail {0}
31
run: nextstrain version --verbose
32
0 commit comments