diff --git a/.github/actions/run-integration-tests/action.yaml b/.github/actions/run-integration-tests/action.yaml index 78f46f67..203c5766 100644 --- a/.github/actions/run-integration-tests/action.yaml +++ b/.github/actions/run-integration-tests/action.yaml @@ -17,6 +17,16 @@ inputs: runs: using: composite steps: + # Workaround for Docker issue in windows runner + # See + - if: runner.os == 'Windows' + shell: pwsh + run: | + $dockerState = Get-Service -Name "docker" + if ($dockerState.Status -ne "Running") { + Start-Service -Name "docker" + } + - shell: bash -l -eo pipefail {0} run: nextstrain version --verbose