LoveIt/.circleci/config.yml

18 lines
442 B
YAML
Raw Normal View History

version: 2.1
2020-02-16 15:25:47 +01:00
jobs:
build-check:
docker:
2020-02-18 09:22:24 +01:00
- image: cibuilds/hugo:0.62
2020-02-16 15:25:47 +01:00
working_directory: ~/LoveIt
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: hugo --source=exampleSite -v --gc
- run: htmlproofer exampleSite/public --check-html --allow-hash-href --empty-alt-ignore --disable-external
2020-02-16 15:25:47 +01:00
workflows:
build-check-exampleSite:
jobs:
- build-check