mirror of
https://gitlab.com/lvra/lvra.gitlab.io.git
synced 2024-11-10 02:20:26 +01:00
28 lines
430 B
YAML
28 lines
430 B
YAML
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
test-links:
|
|
image: python:latest
|
|
script:
|
|
- python3 ./test_links.py
|
|
|
|
test-trailing-spaces:
|
|
script:
|
|
- ./test_trailing_spaces.sh
|
|
|
|
test-build:
|
|
image: registry.gitlab.com/pages/hugo/hugo_extended
|
|
script:
|
|
- hugo
|
|
except:
|
|
- main
|
|
|
|
pages:
|
|
image: registry.gitlab.com/pages/hugo/hugo_extended
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- main
|