Skip to content

chore(deps-dev): bump pytest from 8.3.3 to 8.3.4 #532

chore(deps-dev): bump pytest from 8.3.3 to 8.3.4

chore(deps-dev): bump pytest from 8.3.3 to 8.3.4 #532

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
- uses: extractions/setup-just@v2
- name: Install dependencies
run: poetry install
- name: Lint
run: just lint
- name: Test
run: just test