Skip to content

Merge pull request #24 from thom311/th/mypy #9

Merge pull request #24 from thom311/th/mypy

Merge pull request #24 from thom311/th/mypy #9

Workflow file for this run

name: Check style, test
on:
push:
branches:
pull_request:
branches:
jobs:
check3_9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black
python -m pip install flake8
python -m pip install mypy
python -m pip install -r requirements.txt
python -m pip install types-paramiko
python -m pip install types-requests
- name: Check code formatting with Black
run: |
black --version
black --check --diff .
- name: flake8
run: |
flake8 --version
flake8
- name: Type check with Mypy
run: |
mypy --version
mypy --strict --config-file mypy.ini