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.
37 lines
601 B
37 lines
601 B
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
environment:
|
|
VAULT_DEV_LISTEN_ADDRESS: http://vault:8200
|
|
VAULT_DEV_ROOT_TOKEN_ID: dev
|
|
FDEVS_CONFIG_ETCD_HOST: etcd:2379
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang
|
|
commands:
|
|
# - go test -parallel 10 -race ./...
|
|
- go test ./...
|
|
|
|
- name: golangci-lint
|
|
image: golangci/golangci-lint:v1.55
|
|
commands:
|
|
- golangci-lint run
|
|
|
|
---
|
|
kind: pipeline
|
|
name: json
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang
|
|
commands:
|
|
- cd provider/json
|
|
- go test ./...
|
|
|
|
- name: golangci-lint
|
|
image: golangci/golangci-lint:v1.55
|
|
commands:
|
|
- cd provider/json
|
|
- golangci-lint run
|
|
|