Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
504 B
33 lines
504 B
--- |
|
kind: pipeline |
|
name: go1-13 |
|
|
|
platform: |
|
os: linux |
|
arch: arm64 |
|
|
|
steps: |
|
- name: test |
|
image: golang:1.13 |
|
environment: |
|
GOPROXY: https://goproxy.cn |
|
commands: |
|
- go build -v |
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic |
|
|
|
--- |
|
kind: pipeline |
|
name: go1-16 |
|
|
|
platform: |
|
os: linux |
|
arch: arm64 |
|
|
|
steps: |
|
- name: test |
|
image: golang:1.16 |
|
environment: |
|
GOPROXY: https://goproxy.cn |
|
commands: |
|
- go build -v |
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic |