Skip to content

Fix #24 and prepare pint based mapping functors #73

Fix #24 and prepare pint based mapping functors

Fix #24 and prepare pint based mapping functors #73

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install package
run: |
pip install ".[dev]"
- name: Test with pytest
run: |
pytest tests