From 5a507e0d1bb3d8d0ee52dc4a4d739928ee2ff67e Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Fri, 16 Apr 2021 14:33:15 +0300 Subject: [PATCH] [#273] Add go1.16 tests and fix linter error Signed-off-by: Alex Vanin --- .github/workflows/go.yml | 2 +- pkg/client/container.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ab7b4a0..1f43e51 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - go: [ '1.14.x', '1.15.x' ] + go: [ '1.14.x', '1.15.x', '1.16.x' ] steps: - name: Setup go uses: actions/setup-go@v2 diff --git a/pkg/client/container.go b/pkg/client/container.go index 3430003..0071a60 100644 --- a/pkg/client/container.go +++ b/pkg/client/container.go @@ -230,7 +230,6 @@ func (c *clientImpl) ListContainers(ctx context.Context, ownerID *owner.ID, opts } return result, nil - } func (c *clientImpl) DeleteContainer(ctx context.Context, id *container.ID, opts ...CallOption) error {