Skip to content

Bump pytest-cov from 6.2.0 to 6.3.0 (#218) #541

Bump pytest-cov from 6.2.0 to 6.3.0 (#218)

Bump pytest-cov from 6.2.0 to 6.3.0 (#218) #541

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . --group dev
- name: Lint
run: |
ruff check --output-format=github
ruff format --diff
- name: Typing
run: |
python -m mypy
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10']
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . --group dev
- name: Tests
run: |
python -m pytest -v