Skip to content

Commit

Permalink
Add support for go 1.17 and 1.18 in CI tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
mennanov committed Apr 11, 2022
1 parent f8d5f6f commit f8d8037
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
kind: pipeline
name: go1.16
name: go1.18
type: docker

steps:
- name: test
image: golang:1.16
image: golang:1.18
commands:
- go test -v -coverprofile=coverage.txt -covermode=atomic

Expand All @@ -16,6 +16,28 @@ steps:
files:
- coverage.txt

---
kind: pipeline
name: go1.17
type: docker

steps:
- name: test
image: golang:1.17
commands:
- go test -v

---
kind: pipeline
name: go1.16
type: docker

steps:
- name: test
image: golang:1.16
commands:
- go test -v

---
kind: pipeline
name: go1.15
Expand Down

0 comments on commit f8d8037

Please sign in to comment.