Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ workflows:
ci:
jobs:
- lint
- go/test:
name: test-golang-1.12
executor:
name: go/golang
tag: 1.12-alpine
- go/test:
name: test-golang-1.13
executor:
Expand All @@ -29,17 +24,25 @@ workflows:
tag: 1.15-alpine
codecov-upload: true
- go/test:
name: test-windows-go1.12
name: test-golang-1.16
executor:
name: go/golang
tag: 1.16-rc-alpine
- go/test:
name: test-windows
executor: windows
pre-steps:
- run: |
git config --global core.autocrlf false
git config --global core.symlinks true
- run: |
choco upgrade golang
go version

executors:
windows:
machine:
image: windows-server-2019-vs2019:201908-06
image: windows-server-2019-vs2019:stable
resource_class: windows.medium
shell: bash.exe

Expand Down