Skip to content

clean docstrings of algo base #21

clean docstrings of algo base

clean docstrings of algo base #21

Workflow file for this run

name: Tests
on:
push:
branches: ["master", "dev", "v2"]
pull_request:
branches: ["master", "dev", "v2"]
permissions:
contents: read
jobs:
test:
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Run unit tests
run: make test