Skip to content

Fix typo (#1872)

Fix typo (#1872) #298

Workflow file for this run

name: Linters
on:
pull_request:
push:
branches:
- main
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.10"
- run: python -m pip install tox
- name: tox py310-flake8
run: tox
env:
TOXENV: py310-flake8
mypy:
name: mypy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.10"
- run: python -m pip install tox
- name: tox mypy
run: tox
env:
TOXENV: mypy