From 20c4cdedfc3613bed72b1ef86c53c7abd2dbbc6d Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Sun, 30 Apr 2023 15:18:28 +0200 Subject: [PATCH] CI: Sync tests with restic --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1978b4d..18ada35 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ on: pull_request: env: - latest_go: "1.19.x" + latest_go: "1.20.x" GO111MODULE: on jobs: @@ -20,6 +20,7 @@ jobs: - 1.17.x - 1.18.x - 1.19.x + - 1.20.x runs-on: ubuntu-latest name: Go ${{ matrix.go }} @@ -65,10 +66,10 @@ jobs: uses: golangci/golangci-lint-action@v3 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.49 + version: v1.51 # Optional: show only new issues if it's a pull request. The default value is `false`. only-new-issues: true - args: --verbose --timeout 5m + args: --verbose --timeout 10m # only run golangci-lint for pull requests, otherwise ALL hints get # reported. We need to slowly address all issues until we can enable