This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
Check source URLs #535
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 source URLs | |
on: | |
push: | |
branches: [main] | |
schedule: | |
- cron: "0 0 * * *" #runs at 00:00 UTC every day | |
workflow_dispatch: | |
jobs: | |
test-urls: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v3 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install utility dependencies | |
run: pip install pandas pyyaml | |
- name: check URLs | |
run: python ./scripts/check_ontologies_reachable.py |