Skip to content

PyPi and security fix (#799) #651

PyPi and security fix (#799)

PyPi and security fix (#799) #651

Workflow file for this run

name: Python package
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
env:
POETRY_VERSION: 2.4.3
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: |
poetry install
- name: Format with black
run: |
poetry run black .
- name: Test with pytest
run: |
poetry run pytest