Skip to content

Bump pytest from 8.0.2 to 8.1.1 #38

Bump pytest from 8.0.2 to 8.1.1

Bump pytest from 8.0.2 to 8.1.1 #38

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Poetry
uses: abatilo/actions-poetry@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'poetry'
- name: Validate project metadata
run: |
poetry check
poetry check --lock
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest -v
- name: Check format
run: poetry run ruff format --diff .
- name: Lint
run: poetry run ruff check .
- name: Check types
run: poetry run mypy .