mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-cmake/.circleci/config.yml

22 lines
350 B
YAML

version: 2.1
jobs:
lint:
docker:
- image: circleci/python:latest
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
steps:
- checkout
- run:
name: Lint
command: |
pip install vim-vint
vint .
workflows:
lint:
jobs:
- lint