diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index af5fcd84..54a74e3c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,6 +39,11 @@ jobs: steps: - name: Check out code uses: actions/checkout@v2 + + - name: Set up Go 1.17 + uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> + with: + go-version: 1.17.7 - name: Run linter uses: golangci/[email protected] # Action page: <https://github.com/golangci/golangci-lint-action> |