From a15a9bfdbad30b2f5ce7a966ec1190c108c4df3e Mon Sep 17 00:00:00 2001 From: Steve Coffman Date: Sun, 17 Apr 2022 18:26:57 -0400 Subject: [PATCH] Update test.yml to be valid --- .github/workflows/test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cdc5222270..14b7c3a8b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,16 +7,11 @@ env: jobs: test: - strategy: - matrix: - go: [${{ env.GO_VERSION }}] - os: [ubuntu-latest, windows-latest] - - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: ${{ matrix.go }} + go-version: ${{ env.GO_VERSION }} - run: go mod download && go test -race ./... - run: cd _examples && go mod download && go test -race ./...