16 lines
217 B
YAML
16 lines
217 B
YAML
version: 2.1
|
|
jobs:
|
|
lint:
|
|
docker:
|
|
- image: twuni/helm:3.4.1
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
command: helm lint --strict
|
|
name: lint
|
|
workflows:
|
|
version: 2
|
|
default:
|
|
jobs:
|
|
- lint
|