Skip to content

paper: dual affiliation — CIBR + deeplethe (#4) #33

paper: dual affiliation — CIBR + deeplethe (#4)

paper: dual affiliation — CIBR + deeplethe (#4) #33

Workflow file for this run

name: tests
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[mcp,serial,dev]"
- name: Lint
run: ruff check src tests
- name: Test
run: pytest -v