Skip to content

Tests: Python 3.13 + Cron (#84) #17

Tests: Python 3.13 + Cron (#84)

Tests: Python 3.13 + Cron (#84) #17

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ build/* ]
schedule: # monthly, first day
- cron: 0 0 1 * *
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements-dev.txt
- name: Check
run: nox -e check
- name: Install
run: nox -e install
- name: Packages
run: nox -e freeze
- name: Test
run: nox -e test