diff options
author | Valery Piashchynski <[email protected]> | 2023-02-27 00:13:19 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-27 00:13:19 +0100 |
commit | 2acdcbce00382816a0b4758b0dc88ea4a0f3a9e6 (patch) | |
tree | 4d974859a3794e78d56c50a8a0f491b8e476519f /.github | |
parent | 3da05f810b022d5a73f907060ab8c8b0677180b5 (diff) |
[#1477]: fix: linters
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02be7531..2394bcc8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,14 +40,14 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: '1.19' + go-version: '1.20' - name: Run linter uses: golangci/[email protected] with: version: v1.51 # without patch version only-new-issues: false # show only new issues if it's a pull request - args: --build-tags=safe --timeout=10m + args: -v --build-tags=race --timeout=10m go-test: name: Unit tests |