nvchecker/.github/workflows/mypy.yaml

14 lines
404 B
YAML
Raw Normal View History

2020-08-17 08:42:54 +00:00
name: run mypy
on: [push, pull_request]
jobs:
build:
name: run mypy
runs-on: ubuntu-20.04
2020-08-17 08:42:54 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install deps
run: pip3 install -U tornado pytest pytest-asyncio pytest-httpbin flaky structlog toml aiohttp httpx mypy
2020-08-17 08:42:54 +00:00
- name: Run mypy
run: PATH=$HOME/.local/bin:$PATH mypy nvchecker nvchecker_source tests