mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
ff9e7be643
Bumps [actions/checkout](https://github.com/actions/checkout) from v2 to v2.3.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/master/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...b4483adec309c0d01a5435c5e24eb40de5773ad9) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
545 B
YAML
29 lines
545 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.3.0
|
|
-
|
|
name: build
|
|
run: |
|
|
docker run --rm -v ${PWD}/www:/docs squidfunk/mkdocs-material build
|
|
-
|
|
name: htmltest
|
|
run: |
|
|
cd www
|
|
curl https://htmltest.wjdp.uk | bash
|
|
./bin/htmltest -c htmltest.yml site
|