Skip to content

chore(deps-dev): Update pytest-cov from 5.0.0 to 6.0.0 #625

chore(deps-dev): Update pytest-cov from 5.0.0 to 6.0.0

chore(deps-dev): Update pytest-cov from 5.0.0 to 6.0.0 #625

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- develop
- main
- gh-pages
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install -r requirements-dev.txt
- name: Run pre-commit
uses: pre-commit/[email protected]
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x', '3.12' ]
name: Test python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements-dev.txt
- run: pytest --cov-fail-under=100