Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
github/workflows/ci: fix version spec for go
Browse files Browse the repository at this point in the history
It was my fault, not setup-go's
  • Loading branch information
fsouza committed Mar 1, 2020
1 parent f846fc0 commit 62816f9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
matrix:
go_version:
- "1.13.0 <1.14.0"
- "1.14.0 <1.15.0"
- 1.13
- 1.14
os:
- macos
- ubuntu
Expand All @@ -26,7 +26,7 @@ jobs:
id: go
with:
stable: false
go-version: "^${{ matrix.go_version }}"
go-version: ${{ matrix.go_version }}

- uses: actions/checkout@master

Expand All @@ -37,8 +37,6 @@ jobs:
cd /tmp
env GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest
)
env:
GOPROXY: https://proxy.golang.org
- name: run-linter
run: |
Expand Down

0 comments on commit 62816f9

Please sign in to comment.