Skip to content

Commit 4ea6a83

Browse files
authored
Create HTMLTidy.yml
1 parent 7ab56af commit 4ea6a83

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/HTMLTidy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Verify rule files with HTML Tidy
2+
3+
name: Verify rule files
4+
5+
on:
6+
push:
7+
branches: [ master ]
8+
pull_request:
9+
branches: [ master ]
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Verify rule files
19+
run: wget https://github.com/htacg/tidy-html5/releases/download/5.8.0/tidy-5.8.0-Linux-64bit.deb
20+
run: sudo dpkg -i tidy-5.8.0-Linux-64bit.deb
21+
run: bash cxx-sensors/src/tools/check_rules.sh
22+

0 commit comments

Comments
 (0)