HTML Validation - W3C Validator #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "HTML Validation - W3C Validator" | |
on: | |
push: | |
paths: | |
- '**.html' | |
pull_request: | |
paths: | |
- '**.html' | |
schedule: | |
# Run cron job first day of each month | |
- cron: '0 0 1 * *' | |
jobs: | |
analyze: | |
name: HTML Validation | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.9] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install requests | |
- name: Perform HTML validation | |
run: | | |
python tests/html_validator.py |