Skip to content

Bump pytest-cov from 5.0.0 to 6.0.0 #53

Bump pytest-cov from 5.0.0 to 6.0.0

Bump pytest-cov from 5.0.0 to 6.0.0 #53

Workflow file for this run

name: Build and test package
on: [push]
jobs:
build:
name: Test with ${{matrix.python}} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
pip install nox poetry
- name: Run tests with Nox
run: nox -s lint tests