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
598 B

4 years ago
kind: pipeline
name: default
environment:
4 years ago
VAULT_DEV_LISTEN_ADDRESS: http://vault:8200
4 years ago
VAULT_DEV_ROOT_TOKEN_ID: dev
FDEVS_CONFIG_ETCD_HOST: etcd:2379
steps:
- name: test
image: golang
commands:
9 months ago
# - go test -parallel 10 -race ./...
- go test ./...
4 years ago
- name: golangci-lint
image: golangci/golangci-lint:v1.55
4 years ago
commands:
- golangci-lint run
9 months ago
====
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