This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
Update ontologies #22
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: Update ontologies | |
on: | |
schedule: | |
- cron: "0 0 * * 1" # runs at 00:00 UTC every Monday | |
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 Bionty | |
run: pip install .[dev] | |
- name: check URLs | |
run: python ./scripts/update_new_ontologies.py |