Skip to content

chore: bump pytest-cov from 4.1.0 to 5.0.0 #391

chore: bump pytest-cov from 4.1.0 to 5.0.0

chore: bump pytest-cov from 4.1.0 to 5.0.0 #391

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
- development
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
defaults:
run:
shell: bash
name: ${{ matrix.python-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
PYTHONUNBUFFERED: 1
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1.3.1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load Cached Virtualenv
id: cached-pip-wheels
uses: actions/cache@v3
with:
path: ~/.cache
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install --with test,docs,dev -vvv --no-interaction
- name: Run nox
run: |
source $VENV
nox