Skip to content

ASPIRE Python Scheduled Workflow #24

ASPIRE Python Scheduled Workflow

ASPIRE Python Scheduled Workflow #24

name: ASPIRE Python Scheduled Workflow
on:
schedule:
- cron: '15 0 * * 0' # Every Sunday at 00:15 UTC
jobs:
scheduled-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: develop
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Dependencies
run: |
pip install -e ".[dev]"
- name: Scheduled Tests
run: pytest -m scheduled