2021-11-23 18:27:10 +01:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
build-check:
|
|
|
|
|
docker:
|
2025-12-22 19:05:30 +00:00
|
|
|
- image: cibuilds/hugo:0.153@sha256:e384eaa9910fd0f32a81ff60dd74c068b85cee4c0f5c8573faff7fd9c6eb4a46
|
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
|