Skip to content

ci: add job to run pytest tests #1

ci: add job to run pytest tests

ci: add job to run pytest tests #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -c constraints.txt ".[dev]"
- run: python -m pytest tests/ -q