From 79a981b15d9b74c5a10a68c5c09dba0f2ba4232e Mon Sep 17 00:00:00 2001 From: Vilsol Date: Mon, 2 May 2022 23:18:33 +0300 Subject: [PATCH] use context syntax, run also on windows --- .github/workflows/push.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index b98c532..39fe81f 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -52,7 +52,10 @@ jobs: test: name: Test - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - name: Set up Go uses: actions/setup-go@v2 @@ -77,5 +80,4 @@ jobs: - name: Test run: go test ./... env: - SF_DEDICATED_SERVER: $GITHUB_WORKSPACE/SatisfactoryDedicatedServer - + SF_DEDICATED_SERVER: ${{ github.workspace }}/SatisfactoryDedicatedServer