2017-08-12 19:14:15 +01:00
|
|
|
version: 2.0
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
2017-10-08 14:04:57 +01:00
|
|
|
- image: circleci/ruby:latest
|
2017-08-12 19:14:15 +01:00
|
|
|
working_directory: ~/dotfiles
|
|
|
|
steps:
|
|
|
|
- checkout
|
2017-10-08 14:16:29 +01:00
|
|
|
- run: gem install puppet-lint
|
2017-10-08 18:52:37 +01:00
|
|
|
- run: puppet-lint modules/ -c .puppet-lint.rc
|
|
|
|
- run: puppet-lint manifests/ -c .puppet-lint.rc
|
2018-03-31 18:45:23 +01:00
|
|
|
- run:
|
|
|
|
name: Checkout submodules
|
|
|
|
command: git submodule sync && git submodule update --init
|