Check Infores Catalog Links and Regenerate Artifacts #20
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: Check Infores Catalog Links and Regenerate Artifacts | |
on: | |
schedule: | |
- cron: '0 7 * * 1' # at 07:00 UTC every Monday | |
workflow_dispatch: | |
types: trigger-url-check | |
jobs: | |
check-external-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install poetry | |
poetry install | |
- name: Run URL validation | |
run: | | |
make check_urls | |