mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-01-04 03:49:23 +02:00
fix if statement to not call env var as program
This commit is contained in:
parent
7a4664e107
commit
839fe2af70
2
.github/workflows/test-workflow.yml
vendored
2
.github/workflows/test-workflow.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
- if: ${{ matrix.go }} == 'ubuntu-latest'
|
- if: ${{ matrix.go }} == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src
|
||||||
if [$factorio_password != ""]; then
|
if [ "$factorio_password" != ""]; then
|
||||||
go test ./... -v
|
go test ./... -v
|
||||||
else
|
else
|
||||||
go test ./... -v -test.short
|
go test ./... -v -test.short
|
||||||
|
Loading…
Reference in New Issue
Block a user