1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-16 03:52:12 +02:00

fix(ci): htmltest failing with 416 on some sites (#1721)

* fix(ci): htmltest failing with 416 on some sites

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: headers config

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: action

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: path

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-08-04 00:29:24 -03:00 committed by GitHub
parent 04f8656430
commit 414e10693d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -25,4 +25,4 @@ jobs:
run: |
cd www
curl https://htmltest.wjdp.uk | bash
./bin/htmltest -c htmltest.yml site
./bin/htmltest -c htmltest.yml

View File

@ -1,4 +1,4 @@
DirectoryPath: "site"
DirectoryPath: ./site
IgnoreURLs:
- www.google-analytics.com
- fonts.gstatic.com
@ -8,3 +8,4 @@ IgnoreDirs:
- overrides
IgnoreDirectoryMissingTrailingSlash: true
IgnoreAltMissing: true
HTTPHeaders: '{"Range": "bytes=0-10", "Accept": "*/*"}'