Skip to content

check py3.13 support #196

check py3.13 support

check py3.13 support #196

Workflow file for this run

name: test
on:
push:
pull_request:
env:
PIP_ROOT_USER_ACTION: ignore
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: pip install -e .[dev]
- name: lint
run: make lint
- name: test
run: make test