Skip to content

⬆️ Update pytest-cov requirement from <4.1,>=3.0 to >=3.0,<4.2 #764

⬆️ Update pytest-cov requirement from <4.1,>=3.0 to >=3.0,<4.2

⬆️ Update pytest-cov requirement from <4.1,>=3.0 to >=3.0,<4.2 #764

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.9"]
env:
# cache busting if requirements haven't changed
CACHE_EPOCH: 0
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pip install --upgrade hatch
- name: Set up cache
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ env.CACHE_EPOCH }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: |
pip install .[dev]
- name: Pytest
run: |
pytest