You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kubernetes-hands-on/.circleci/config.yml

34 lines
620 B
YAML

---
version: 2.1
jobs:
lint-yml:
docker:
- image: circleci/python:3.7.3
steps:
- checkout
- run:
name: install yamllint
command: sudo pip install yamllint
- run:
name: lint yml
command: yamllint .
lint-md:
docker:
- image: circleci/node:12
steps:
- checkout
- run:
name: install markdownlint-cli
command: sudo yarn global add markdownlint-cli
- run:
name: lint markdown
command: markdownlint .
workflows:
version: 2
suite:
jobs:
- lint-md
- lint-yml