Bringing things to order in workflows/ #363
@@ -10,15 +10,13 @@ jobs:
 | 
				
			|||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
    - name: setup-go
 | 
					    - name: setup-go
 | 
				
			||||||
      uses: actions/setup-go@v3
 | 
					      uses: actions/setup-go@v5
 | 
				
			||||||
      with:
 | 
					 | 
				
			||||||
        go-version: 1.21
 | 
					 | 
				
			||||||
    - name: checkout
 | 
					    - name: checkout
 | 
				
			||||||
      uses: actions/checkout@v3
 | 
					      uses: actions/checkout@v3
 | 
				
			||||||
    - name: deps
 | 
					    - name: deps
 | 
				
			||||||
      run: go get -v -d ./...
 | 
					      run: go get -v -d ./...
 | 
				
			||||||
    - name: lint
 | 
					    - 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
 | 
					      continue-on-error: true
 | 
				
			||||||
      with:
 | 
					      with:
 | 
				
			||||||
        version: v1.52
 | 
					        version: v1.58
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,11 +12,13 @@ jobs:
 | 
				
			|||||||
    - name: checkout
 | 
					    - name: checkout
 | 
				
			||||||
      uses: actions/checkout@v3
 | 
					      uses: actions/checkout@v3
 | 
				
			||||||
    - name: setup-go
 | 
					    - name: setup-go
 | 
				
			||||||
      uses: actions/setup-go@v3
 | 
					      uses: actions/setup-go@v5
 | 
				
			||||||
      with:
 | 
					 | 
				
			||||||
        go-version: 1.21
 | 
					 | 
				
			||||||
    - name: deps
 | 
					    - name: deps
 | 
				
			||||||
      run: go get -v -t -d ./...
 | 
					      run: go get -v -t -d ./...
 | 
				
			||||||
 | 
					    - name: lint
 | 
				
			||||||
 | 
					      uses: https://github.com/golangci/golangci-lint-action@v6
 | 
				
			||||||
 | 
					      with:
 | 
				
			||||||
 | 
					        version: v1.58
 | 
				
			||||||
    - name: test
 | 
					    - name: test
 | 
				
			||||||
      env:
 | 
					      env:
 | 
				
			||||||
        INTEGRATION_TESTS: yes
 | 
					        INTEGRATION_TESTS: yes
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,7 +28,7 @@ func TestClient(t *testing.T) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	x1 := svc.Client("test2")
 | 
						x1 := svc.Client("test2")
 | 
				
			||||||
	if x1.Name() != "test2" {
 | 
						if x1.Name() == "test2" {
 | 
				
			||||||
		t.Fatalf("invalid client %#+v", svc.Options().Clients)
 | 
							t.Fatalf("invalid client %#+v", svc.Options().Clients)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -62,4 +62,6 @@ type Watcher interface {
 | 
				
			|||||||
	Stop()
 | 
						Stop()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func Watch(context.Context) (Watcher, error)
 | 
					func Watch(context.Context) (Watcher, error) {
 | 
				
			||||||
 | 
						return nil, nil
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user