update test-workflow.yml

This commit is contained in:
Jan Naahs 2020-12-02 16:51:22 +01:00
parent 14c21444ec
commit 1c324368f8

View File

@ -50,12 +50,12 @@ jobs:
- if: contains(matrix.os, 'windows')
run: |
cd src
if (Test-Path 'env:factorio_password') {
echo "run full test suit"
go test ./... -v
} else {
if (-not (Test-Path env:factorio_password)) {
echo "run only short tests"
go test ./... -v -test.short
} else {
echo "run full test suit"
go test ./... -v
}
docker-push:
needs: [test-npm, test-go]