Skip to content

chore(deps): bump coverage from 7.15.2 to 7.15.3 (#832) #2157

chore(deps): bump coverage from 7.15.2 to 7.15.3 (#832)

chore(deps): bump coverage from 7.15.2 to 7.15.3 (#832) #2157

Workflow file for this run

name: Code testing
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Harden Runner
if: runner.os == 'Linux'
uses: step-security/harden-runner@v2.16.0
with:
egress-policy: audit
- uses: actions/checkout@v6.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry==2.1.3
- name: Install dependencies with Poetry
run: |
poetry install --all-extras --with dev
- name: Testing with pytest
run: poetry run pytest ./tests/