Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
linxGnu committed Sep 2, 2021
1 parent 3310471 commit d7dd071
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: [ push, pull_request ]
on: [push, pull_request]

jobs:
build:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Linter
uses: golangci/golangci-lint-action@v2
with:
version: v1.31
version: v1.42

- name: Test Coverage
run: go test -v -race -count=1 -coverprofile=coverage.out
Expand Down
2 changes: 1 addition & 1 deletion transceivable.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func newTransceivable(conn *Connection, settings Settings) *transceivable {
},

response: func(p pdu.PDU) {
t.Submit(p)
_ = t.Submit(p)
},
})

Expand Down

0 comments on commit d7dd071

Please sign in to comment.