Skip to content

restructure repo col2dict #1

restructure repo col2dict

restructure repo col2dict #1

Workflow file for this run

name: col2dict tests
on:
push:
paths:
- "packages/col2dict/**"
pull_request:
paths:
- "packages/col2dict/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package with dev dependencies
run: |
cd packages/col2dict
pip install -e ".[dev]"
- name: Run tests
run: |
cd packages/col2dict
pytest -v