Introduce Go 1.13 to use stdlib error wrapping

This commit is contained in:
Matthias Loibl 2019-10-09 15:40:14 +02:00
parent b1501bbce7
commit 9a2a8afaeb
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{ {
_config+:: { _config+:: {
golang: 'golang:1.12', golang: 'golang:1.13',
}, },
kind: 'pipeline', kind: 'pipeline',

View file

@ -9,7 +9,7 @@ platform:
steps: steps:
- name: gomod - name: gomod
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- go mod vendor - go mod vendor
- git diff --exit-code - git diff --exit-code
@ -23,7 +23,7 @@ steps:
- name: build - name: build
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make build - make build
- make test - make test
@ -38,7 +38,7 @@ steps:
- name: generate - name: generate
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make check-license - make check-license
- make generate - make generate