Skip to content

Nightly

Nightly #1236

Workflow file for this run

name: Nightly
on:
schedule:
- cron: '0 2 * * *' # run at 2 AM UTC
jobs:
test-against-pre-releases-of-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox -e pre-release