Skip to content

Add support for gotranx and switch from setup.cfg to pyproject.toml #164

Add support for gotranx and switch from setup.cfg to pyproject.toml

Add support for gotranx and switch from setup.cfg to pyproject.toml #164

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install -e ".[test]"
- name: Test with pytest
run: |
python -m pytest