15 lines
464 B
YAML
15 lines
464 B
YAML
version: 2.0
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/ruby:latest
|
|
working_directory: ~/dotfiles
|
|
steps:
|
|
- checkout
|
|
- run: gem install puppet-lint
|
|
- run: puppet-lint modules/ -c .puppet-lint.rc
|
|
- run: puppet-lint manifests/ -c .puppet-lint.rc
|
|
- run:
|
|
name: Checkout submodules
|
|
command: git submodule sync && git submodule update --init
|