Compare commits

...

10 Commits

Author SHA1 Message Date
Geekix
20144b511d
Update config.yml 2021-11-08 12:13:43 +01:00
Geekix
e9b327cc0c
Update config.yml 2021-11-08 11:55:14 +01:00
Geekix
a72f539c23
Update config.yml 2021-11-08 11:21:00 +01:00
Geekix
c8fa6599ff
Update config.yml 2021-11-08 09:36:52 +01:00
Geekix
eba85e08df
Update init.pp 2021-11-08 09:35:14 +01:00
Geekix
6d478b124c
Update config.yml 2021-11-08 09:34:00 +01:00
Geekix
c06708dc91
Update config.yml 2021-11-08 09:33:40 +01:00
Geekix
e24a9aa89a
Update config.yml 2021-11-08 09:29:24 +01:00
Geekix
bd5fbd4cc6
Update config.yml 2021-11-07 11:52:46 +01:00
Geekix
418a817b70 Add .circleci/config.yml 2021-11-06 17:11:44 +01:00
2 changed files with 32 additions and 2 deletions

30
.circleci/config.yml Normal file
View File

@ -0,0 +1,30 @@
version: 2.1
orbs:
ruby: circleci/ruby@1.1.0
node: circleci/node@2
jobs:
verif:
docker:
- image: cimg/ruby:2.7-node
steps:
- checkout
- run :
name: prerequisites
command: bundle install
- run:
name: verif_lint
command: bundle exec rake validate lint
- run:
name: verif_parser
command: puppet parser validate manifests/init.pp
- run:
name: woot
command: bundle exec rake spec
workflows:
version: 2
verif:
jobs:
- verif