Skip to content

Commit

Permalink
Update CI to use Go 1.13
Browse files Browse the repository at this point in the history
Also removed superfluous dep check
  • Loading branch information
tsak committed Sep 3, 2019
1 parent f2b51ff commit 3c60c2f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.12
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.12
go-version: 1.13
id: go

- name: Check out code into the Go module directory
Expand All @@ -19,10 +19,6 @@ jobs:
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .

0 comments on commit 3c60c2f

Please sign in to comment.