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.
2 parents dd5711c + c10d4d7 commit a295958Copy full SHA for a295958
.github/workflows/test.yml
@@ -9,13 +9,10 @@ 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 /tmp/tidy.zip https://github.com/remram44/regex-cheatsheet/files/6848619/tidy-5.8.0.zip
+ unzip -p /tmp/tidy.zip tidy-5.8.0 >/usr/local/bin/tidy
+ 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