Bump to 1.18 release, add 1.17 and 1.19 tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2023-01-28 23:57:23 +01:00
parent be3e29d3c7
commit b55589f8c1
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -1,14 +1,37 @@
---
kind: pipeline
type: docker
name: default
name: default-1.17
steps:
- name: test
image: golang:1.18rc1-bullseye
image: golang:1.17-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
---
kind: pipeline
type: docker
name: default-1.18
steps:
- name: test
image: golang:1.18-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
---
kind: pipeline
type: docker
name: default-1.19
steps:
- name: test
image: golang:1.19-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
...