Skip to content

feat!: body removed from ignored patterns #59

feat!: body removed from ignored patterns

feat!: body removed from ignored patterns #59

Workflow file for this run

---
name: Test Python package
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup poetry
uses: abatilo/actions-poetry@v4.0.0
with:
poetry-version: 1.8.5
- name: Set up Poetry virtual environment
run: poetry env use python${{ matrix.python-version }}
- name: Install project dependencies
run: poetry install
- name: Run tests with Poetry
run: poetry run pytest