Skip to content

CI

CI #470

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
release:
types:
- published
schedule:
- cron: '0 0 * * *' # daily at 00:00 UTC
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install '.[test]'
- name: Run tests
run: |
pytest