Skip to content

chore(deps): bump pytest-env from 1.0.0 to 1.0.1 #57

chore(deps): bump pytest-env from 1.0.0 to 1.0.1

chore(deps): bump pytest-env from 1.0.0 to 1.0.1 #57

Workflow file for this run

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