Skip to content

Commit

Permalink
Change CI to use Go 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubbelboer committed Aug 16, 2020
1 parent 01acd76 commit 12aba62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ os:
- windows
go:
- tip
- 1.15.x
- 1.14.x
- 1.13.x
- 1.12.x
- 1.11.x

script:
- go test -v ./...
Expand All @@ -31,7 +31,7 @@ jobs:
os:
- linux
go:
- 1.14.x
- 1.15.x
script:
- GOOS=linux go build
- GOOS=darwin go build
Expand All @@ -42,24 +42,23 @@ jobs:
os:
- osx
go:
- 1.14.x
- 1.15.x
script:
- GOOS=linux go build
- GOOS=darwin go build
- GOOS=freebsd go build
- GOOS=windows go build
- GOARCH=386 go build
- stage: race detector
os:
- linux
go:
- 1.14.x
- 1.15.x
script:
- go test -race -v ./...
- stage: race detector
os:
- osx
go:
- 1.14.x
- 1.15.x
script:
- go test -race -v ./...

0 comments on commit 12aba62

Please sign in to comment.