From 88078e48d0a0a3c8a31c6be4072182c7cee68756 Mon Sep 17 00:00:00 2001 From: Jinzhu Date: Wed, 24 Mar 2021 16:56:41 +0800 Subject: [PATCH] Remove sqlite_windows test case --- .github/workflows/tests.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fec7d000..e2ea89a7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,31 +35,6 @@ jobs: - name: Tests run: GORM_DIALECT=sqlite ./tests/tests_all.sh - sqlite_windows: - strategy: - matrix: - go: ['1.16', '1.15', '1.14'] - platform: [windows-latest] - runs-on: ${{ matrix.platform }} - - steps: - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ${{ matrix.go }} - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: go mod package cache - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }} - - - name: Tests - run: cd tests && set GORM_DIALECT=sqlite && go test $race -count=1 -v ./... #run the line in widnows's CMD, default GORM_DIALECT is sqlite - mysql: strategy: matrix: