Skip to content

fix links to renamed files #26

fix links to renamed files

fix links to renamed files #26

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Install package in editable mode
run: |
pip install -e .
# currently no tests
# - name: Run tests
# run: |
# pytest --verbose --tb=short