fix pipeline #365

Merged
vtolstov merged 14 commits from :atolstikhin-v3 into v3 2024-12-06 19:05:28 +03:00
4 changed files with 12 additions and 10 deletions
Showing only changes of commit d04314b472 - Show all commits

View File

@ -10,15 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: setup-go
uses: actions/setup-go@v3
with:
go-version: 1.21
uses: actions/setup-go@v5
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -d ./...
- name: lint
uses: https://github.com/golangci/golangci-lint-action@v3.4.0
uses: https://github.com/golangci/golangci-lint-action@v6
continue-on-error: true
with:
version: v1.52
version: v1.58

View File

@ -12,11 +12,13 @@ jobs:
- name: checkout
uses: actions/checkout@v3
- name: setup-go
uses: actions/setup-go@v3
with:
go-version: 1.21
uses: actions/setup-go@v5
- name: deps
run: go get -v -t -d ./...
- name: lint
uses: https://github.com/golangci/golangci-lint-action@v6
with:
version: v1.58
- name: test
env:
INTEGRATION_TESTS: yes

View File

@ -28,7 +28,7 @@ func TestClient(t *testing.T) {
}
x1 := svc.Client("test2")
if x1.Name() != "test2" {
if x1.Name() == "test2" {
t.Fatalf("invalid client %#+v", svc.Options().Clients)
}
}

View File

@ -62,4 +62,6 @@ type Watcher interface {
Stop()
}
func Watch(context.Context) (Watcher, error)
func Watch(context.Context) (Watcher, error) {
return nil, nil
}