]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/vim-python-pep8-indent/.circleci/config.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/vim-python-pep8-indent/' from commit '60ba5e11a61618c0344e2db1902101...
[etc/vim.git] / .vim / bundle / vim-python-pep8-indent / .circleci / config.yml
1 version: 2
2
3 common: &common
4   working_directory: ~/repo
5   docker:
6     - image: blueyed/vim-python-pep8-indent-vims-for-test:3@sha256:e7e3c4f4b021954a40f2f1d88dc470f119dc65603c63724d1c58cbe437fdc2d4
7
8 jobs:
9   test:
10     <<: *common
11     steps:
12       - checkout
13       - run:
14           name: Run tests
15           command: |
16             spec/make-coverage
17       - run:
18           name: Report coverage
19           command: |
20             covimerage xml
21             codecov -X search gcov pycov -f coverage.xml
22
23   checkqa:
24     <<: *common
25     steps:
26       - checkout
27       - run:
28           name: Lint
29           command: |
30             vint **/*.vim
31
32 workflows:
33   version: 2
34   test:
35     jobs:
36       - test
37       - checkqa