mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
42c6b8b7a8
* feat: use htmltest action Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * fix: config Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
29 lines
532 B
YAML
29 lines
532 B
YAML
name: docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/workflows/htmltest.yml'
|
|
- 'www/*'
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
htmltest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: build
|
|
run: |
|
|
docker run --rm -v ${PWD}/www:/docs squidfunk/mkdocs-material build
|
|
-
|
|
name: htmltest
|
|
uses: wjdp/htmltest-action@master
|
|
with:
|
|
path: www/site
|
|
config: www/htmltest.yml
|