chore: add ci

This commit is contained in:
Rémy-Christophe Schermesser 2019-05-15 14:27:11 +02:00
parent 813a7787c1
commit 8fb3a61c8a
1 changed files with 33 additions and 0 deletions

33
.circleci/config.yml Normal file
View File

@ -0,0 +1,33 @@
---
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:9.9.0
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