Skip to content

Add GitHub Python workflow tests #1

Add GitHub Python workflow tests

Add GitHub Python workflow tests #1

Workflow file for this run

name: Python test
on:
schedule:
- cron: "0 1 * * *"
push:
branches: [main]
pull_request:
branches: [main]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt