Skip to content

Bump version: 1.0.1 → 1.1.0 #190

Bump version: 1.0.1 → 1.1.0

Bump version: 1.0.1 → 1.1.0 #190

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