mirror of https://github.com/helm/helm
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
541 B
33 lines
541 B
---
|
|
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
working_directory: ~/helm.sh/helm
|
|
docker:
|
|
- image: circleci/golang:1.13
|
|
|
|
environment:
|
|
GOCACHE: "/tmp/go/cache"
|
|
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: test style
|
|
command: make test-style
|
|
- run:
|
|
name: test
|
|
command: make test-coverage
|
|
- deploy:
|
|
name: deploy
|
|
command: .circleci/deploy.sh
|
|
|
|
workflows:
|
|
version: 2
|
|
build:
|
|
jobs:
|
|
- build:
|
|
filters:
|
|
tags:
|
|
only: /.*/
|