From d15b0f9e0074529abdae83e4497f9bfbac16b0c1 Mon Sep 17 00:00:00 2001 From: Yonghwan SO Date: Wed, 29 Jun 2022 00:30:27 +0900 Subject: [PATCH] removed tests for go1.16 and disabled race detector on windows --- .github/workflows/tests.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d3f9c48e..240ba5c9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,6 @@ jobs: strategy: matrix: go-version: - - "1.16.x" - "1.17.x" - "1.18.x" @@ -56,7 +55,6 @@ jobs: strategy: matrix: go-version: - - "1.16.x" - "1.17.x" - "1.18.x" @@ -102,7 +100,6 @@ jobs: strategy: matrix: go-version: - - "1.16.x" - "1.17.x" - "1.18.x" @@ -146,7 +143,6 @@ jobs: strategy: matrix: go-version: - - "1.16.x" - "1.17.x" - "1.18.x" @@ -187,7 +183,6 @@ jobs: strategy: matrix: go-version: - - "1.16.x" - "1.17.x" - "1.18.x" os: @@ -213,7 +208,15 @@ jobs: shell: bash - name: Test + if: ${{ matrix.os != 'windows-latest' }} env: SODA_DIALECT: "sqlite" run: | go test -tags sqlite -race -cover ./... + + - name: Short Test + if: ${{ matrix.os == 'windows-latest' }} + env: + SODA_DIALECT: "sqlite" + run: | + go test -tags sqlite ./...