Skip to content

Commit

Permalink
removed tests for go1.16 and disabled race detector on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sio4 committed Jun 30, 2022
1 parent 3abf892 commit d15b0f9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -12,7 +12,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.16.x"
- "1.17.x"
- "1.18.x"

Expand Down Expand Up @@ -56,7 +55,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.16.x"
- "1.17.x"
- "1.18.x"

Expand Down Expand Up @@ -102,7 +100,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.16.x"
- "1.17.x"
- "1.18.x"

Expand Down Expand Up @@ -146,7 +143,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.16.x"
- "1.17.x"
- "1.18.x"

Expand Down Expand Up @@ -187,7 +183,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.16.x"
- "1.17.x"
- "1.18.x"
os:
Expand All @@ -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 ./...

0 comments on commit d15b0f9

Please sign in to comment.