Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Update mypy to 1.5.0 #178

Update mypy to 1.5.0

Update mypy to 1.5.0 #178

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test & Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
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 dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/tests.txt
- name: Lint with black
run: |
black -S -l 120 --check dostoevsky/
- name: List with isort
run: |
isort --check dostoevsky/
- name: Lint with mypy
run: |
mypy dostoevsky/
- name: Test with pytest
run: |
pytest -vv tests/
- name: Test binary command
run: |
pip install -e . && python -m dostoevsky --dry-run