public-apis/.github/workflows/validate_links.yml
2022-01-17 18:51:08 -03:00

27 lines
589 B
YAML

name: "Validate links"
on:
schedule:
- cron: '0 0 * * *'
env:
FORMAT_FILE: README.md
jobs:
validate_links:
name: 'Check all links are working'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: python -m pip install -r scripts/requirements.txt
- name: Validate all links from README.md
run: python scripts/validate/links.py ${FORMAT_FILE}