Skip to content

Bump pytest from 8.2.2 to 8.3.2 in the dependencies group #65

Bump pytest from 8.2.2 to 8.3.2 in the dependencies group

Bump pytest from 8.2.2 to 8.3.2 in the dependencies group #65

Workflow file for this run

name: Lint and test
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry and pre-commit
run: |
pipx install poetry
pipx install pre-commit
- name: Install dependencies
run: poetry install --no-interaction
- name: Run pre-commit
run: poetry run pre-commit run --all-files
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest scripts/filter.py