mirror of
https://github.com/public-apis/public-apis.git
synced 2025-06-05 20:31:48 +02:00
Update validate_links action
This commit is contained in:
parent
9e790e5b46
commit
75e1d2e44f
1 changed files with 11 additions and 6 deletions
17
.github/workflows/validate_links.yml
vendored
17
.github/workflows/validate_links.yml
vendored
|
@ -3,20 +3,25 @@ name: "Validate links"
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
FORMAT_FILE: README.md
|
FORMAT_FILE: README.md
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
validate_links:
|
||||||
name: 'Validate links'
|
name: 'Check all links are working'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
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
|
- name: Validate all links from README.md
|
||||||
run: build/validate_links.py ${FORMAT_FILE}
|
run: python scripts/validate/links.py ${FORMAT_FILE}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue