Skip to content

nightly

nightly #540

Workflow file for this run

name: nightly
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# 6:00 of UTF+8 every day
- cron: '0 22 * * *'
workflow_dispatch:
jobs:
test-nightly:
if: false
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [ "3.13-dev" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox
- name: Unit tests
run: nox -s tests_venv_current