mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-12-03 06:54:03 +03:00
19 lines
316 B
YAML
19 lines
316 B
YAML
|
name: Linters
|
||
|
|
||
|
on: [push, workflow_dispatch]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
mypy:
|
||
|
name: Run mypy
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: 3.9
|
||
|
- run: pip install tox
|
||
|
- run: tox
|
||
|
env:
|
||
|
TOXENV: mypy
|