Files
unbound-site/themes/LoveIt/.circleci/config.yml
T

18 lines
515 B
YAML
Raw Normal View History

2021-11-23 18:27:10 +01:00
version: 2.1
jobs:
build-check:
docker:
- image: cibuilds/hugo:0.159@sha256:71e1fda7c4c9e24fd356748dc0e735ef0976189678cf17e4b243b0d5e1f7ae7c
2021-11-23 18:27:10 +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
workflows:
build-check-exampleSite:
jobs:
- build-check