Skip to content

Commit

Permalink
added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brigit-parrish committed Dec 18, 2023
1 parent 2c73d9b commit 405f688
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run_bioModels_cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: run bioModels_cache.py

on:
schedule:
- cron: '0 0 * * 1' # At 00:00 on Monday

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2

- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'

- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script
run: python bioModels_cache.py

0 comments on commit 405f688

Please sign in to comment.