diff options
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 |