Skip to content

Bump pytest from 7.4.0 to 7.4.1 #172

Bump pytest from 7.4.0 to 7.4.1

Bump pytest from 7.4.0 to 7.4.1 #172

Workflow file for this run

name: Code Quality
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
- name: Code Quality
run: |
source .venv/bin/activate
flake8 regta_period
find . -iname "*.py" -not -path "./.venv/*" -not -path "./docs/*" | xargs pylint
mypy regta_period