From f4e95c94234f036f59b89cca9de6cb612c974789 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Fri, 16 Apr 2021 12:16:09 +0300 Subject: [PATCH] update linter action config & fix for tests --- .github/workflows/ci.yml | 10 +++++++--- v5/client.go | 6 +++--- v5/client_test.go | 10 +++++----- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73ac39e..7642ede 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,15 +28,19 @@ jobs: - name: Get dependencies run: | go get -v github.com/google/go-querystring/query - go get -v github.com/h2non/gock + go get -v gopkg.in/h2non/gock.v1 go get -v github.com/joho/godotenv go get -v github.com/retailcrm/api-client-go/errs cp .env.dist .env - name: Lint code with golangci-lint uses: golangci/golangci-lint-action@v2 + env: + GO111MODULE: off with: - version: v1.36 + version: v1.39 only-new-issues: true + skip-go-installation: true + skip-pkg-cache: true tests: name: Tests runs-on: ubuntu-latest @@ -56,7 +60,7 @@ jobs: - name: Get dependencies run: | go get -v github.com/google/go-querystring/query - go get -v github.com/h2non/gock + go get -v gopkg.in/h2non/gock.v1 go get -v github.com/joho/godotenv go get -v github.com/retailcrm/api-client-go/errs cp .env.dist .env diff --git a/v5/client.go b/v5/client.go index a918ffa..6978762 100644 --- a/v5/client.go +++ b/v5/client.go @@ -617,7 +617,7 @@ func (c *Client) CustomerNoteDelete(id int) (SuccessfulResponse, int, *errs.Fail var resp SuccessfulResponse p := url.Values{ - "id": {string(id)}, + "id": {strconv.Itoa(id)}, } data, status, err := c.PostRequest(fmt.Sprintf("/customers/notes/%d/delete", id), p) @@ -1106,7 +1106,7 @@ func (c *Client) CorporateCustomerNoteDelete(id int) (SuccessfulResponse, int, * var resp SuccessfulResponse p := url.Values{ - "id": {string(id)}, + "id": {strconv.Itoa(id)}, } data, status, err := c.PostRequest(fmt.Sprintf("/customers-corporate/notes/%d/delete", id), p) @@ -2437,7 +2437,7 @@ func (c *Client) OrderPaymentDelete(id int) (SuccessfulResponse, int, *errs.Fail var resp SuccessfulResponse p := url.Values{ - "id": {string(id)}, + "id": {strconv.Itoa(id)}, } data, status, err := c.PostRequest(fmt.Sprintf("/orders/payments/%d/delete", id), p) diff --git a/v5/client_test.go b/v5/client_test.go index 5cce145..1fa472f 100644 --- a/v5/client_test.go +++ b/v5/client_test.go @@ -15,8 +15,8 @@ import ( "testing" "time" - "github.com/h2non/gock" "github.com/joho/godotenv" + "gopkg.in/h2non/gock.v1" ) func TestMain(m *testing.M) { @@ -1817,7 +1817,7 @@ func TestClient_NotesCreateDelete(t *testing.T) { } p = url.Values{ - "id": {string(1)}, + "id": {"1"}, } gock.New(crmURL). @@ -1879,7 +1879,7 @@ func TestClient_NotesCreateDelete_Fail(t *testing.T) { } p = url.Values{ - "id": {string(iCodeFail)}, + "id": {strconv.Itoa(iCodeFail)}, } gock.New(crmURL). @@ -2564,7 +2564,7 @@ func TestClient_PaymentCreateEditDelete(t *testing.T) { } p = url.Values{ - "id": {string(paymentCreateResponse.ID)}, + "id": {strconv.Itoa(paymentCreateResponse.ID)}, } gock.New(crmURL). @@ -2655,7 +2655,7 @@ func TestClient_PaymentCreateEditDelete_Fail(t *testing.T) { } p = url.Values{ - "id": {string(iCodeFail)}, + "id": {strconv.Itoa(iCodeFail)}, } gock.New(crmURL).