diff options
author | Valery Piashchynski <[email protected]> | 2022-03-02 19:02:32 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-02 19:02:32 +0100 |
commit | 923de49dd909b56fad6e7f9477974bcab6db0e27 (patch) | |
tree | 1569ccfe640802d6515490db4bf88110fe526782 /.github | |
parent | 251228ad5629d164e177ea9e93f9aa2318ae7975 (diff) |
add setup-gp
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> |