Skip to content

Prepare for v0.6.0 release #106

Prepare for v0.6.0 release

Prepare for v0.6.0 release #106

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: checkout
uses: actions/checkout@v6
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --group dev .
- name: lint
run: make lint
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.14"]
steps:
- name: checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: install
run: |
python -m pip install --upgrade pip
python -m pip install --group dev .
- name: run tests
run: make test