Skip to content

Nightly Tests #10

Nightly Tests

Nightly Tests #10

Workflow file for this run

name: Nightly Tests
on:
schedule:
- cron: "0 22 * * *" # This runs at 22:00 UTC every day
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13.1
uses: actions/setup-python@v3
with:
python-version: 3.13.1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install -r requirements.txt
- name: Launch integration tests
run: |
python tests/integration/run.py