Skip to content

Commit

Permalink
ci: add test for win (zeromicro#1503)
Browse files Browse the repository at this point in the history
* ci: add test for win

* ci: update check names

* ci: use go build instead of go test to verify win test

* fix: windows test failure

* chore: disable logs in tests
  • Loading branch information
kevwan authored Feb 4, 2022
1 parent b1ffc46 commit 0fdd8f5
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 27 deletions.
72 changes: 45 additions & 27 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,50 @@ on:
branches: [ master ]

jobs:
build:
name: Build
test-linux:
name: Linux
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Lint
run: |
go vet -stdmethods=false $(go list ./...)
go install mvdan.cc/gofumpt@latest
test -z "$(gofumpt -s -l -extra .)" || echo "Please run 'gofumpt -l -w -extra .'"
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...

- name: Codecov
uses: codecov/codecov-action@v2
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Lint
run: |
go vet -stdmethods=false $(go list ./...)
go install mvdan.cc/gofumpt@latest
test -z "$(gofumpt -s -l -extra .)" || echo "Please run 'gofumpt -l -w -extra .'"
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...

- name: Codecov
uses: codecov/codecov-action@v2

test-win:
name: Windows
runs-on: windows-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15

- name: Checkout codebase
uses: actions/checkout@v2

- name: Test
run: |
go mod verify
go mod download
go test -v -race ./...
cd tools/goctl && go build -v goctl.go
3 changes: 3 additions & 0 deletions core/proc/shutdown_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build linux || darwin
// +build linux darwin

package proc

import (
Expand Down
5 changes: 5 additions & 0 deletions core/stores/redis/redis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/alicebob/miniredis/v2"
red "github.com/go-redis/redis"
"github.com/stretchr/testify/assert"
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/core/stringx"
)

Expand Down Expand Up @@ -1135,6 +1136,8 @@ func TestRedis_WithPass(t *testing.T) {
}

func runOnRedis(t *testing.T, fn func(client *Redis)) {
logx.Disable()

s, err := miniredis.Run()
assert.Nil(t, err)
defer func() {
Expand All @@ -1153,6 +1156,8 @@ func runOnRedis(t *testing.T, fn func(client *Redis)) {
}

func runOnRedisTLS(t *testing.T, fn func(client *Redis)) {
logx.Disable()

s, err := miniredis.RunTLS(&tls.Config{
Certificates: make([]tls.Certificate, 1),
InsecureSkipVerify: true,
Expand Down
3 changes: 3 additions & 0 deletions core/stores/redis/scriptcache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/zeromicro/go-zero/core/logx"
)

func TestScriptCache(t *testing.T) {
logx.Disable()

cache := GetScriptCache()
cache.SetSha("foo", "bar")
cache.SetSha("bla", "blabla")
Expand Down

0 comments on commit 0fdd8f5

Please sign in to comment.