goflac/.drone.yml

38 lines
790 B
YAML
Raw Normal View History

2022-02-23 15:04:17 +00:00
---
kind: pipeline
type: docker
name: default-1.17
2022-02-23 15:04:17 +00:00
steps:
- name: test
image: golang:1.17-bullseye
2022-02-23 15:04:17 +00:00
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
2022-02-23 15:04:17 +00:00
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
2022-02-23 15:04:17 +00:00
...