homepage/.drone.yml

14 lines
248 B
YAML
Raw Normal View History

2020-02-01 18:58:07 +01:00
kind: pipeline
type: docker
name: default
steps:
2020-02-01 19:04:14 +01:00
- name: html_validate
2020-02-01 18:58:07 +01:00
image: ubuntu
commands:
2020-02-01 22:10:59 +01:00
- apt-get update && apt-get install -y tidy
2020-02-01 22:12:19 +01:00
- tidy -imu index.html + || if [ $? -eq 1 ]; then echo "you fail"; fi
2020-02-01 18:58:07 +01:00
trigger:
branch:
- master