We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5711c commit db5fc08Copy full SHA for db5fc08
.github/workflows/test.yml
@@ -9,13 +9,9 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
12
- - uses: actions/setup-python@v1
13
- with:
14
- python-version: "3.7"
15
- - name: Install dependencies
+ - name: Install tidy 5.8.0
16
run: |
17
- sudo apt-get update -qq
18
- sudo apt-get install -yy default-jre-headless
19
- pip install html5validator
+ curl -sSL -o /usr/local/bin/tidy 'https://gitlab.com/remram44/taguette/-/snippets/2150886/raw/main/tidy-5.8.0?inline=false'
+ chmod +x /usr/local/bin/tidy
20
- name: Validate HTML
21
- run: html5validator --show-warnings
+ run: tidy -errors -quiet --drop-empty-elements no regex.html
0 commit comments