Skip to content

Danus: initial open-source release #6

Danus: initial open-source release

Danus: initial open-source release #6

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
# the supported floor and the current ceiling (requires-python >= 3.10)
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install (all extras)
run: pip install -e ".[dev]"
- name: Run the offline test suite
run: python -m pytest danus/ -q