Skip to content

v0.2.0: open the PR automatically + GitHub Action #1

v0.2.0: open the PR automatically + GitHub Action

v0.2.0: open the PR automatically + GitHub Action #1

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run tests
run: pytest -q