2020-08-17 08:42:54 +00:00
|
|
|
name: run mypy
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: run mypy
|
2020-08-17 14:07:00 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2020-08-17 08:42:54 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install deps
|
2020-08-17 14:07:00 +00:00
|
|
|
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
|
2020-08-17 14:07:00 +00:00
|
|
|
run: PATH=$HOME/.local/bin:$PATH mypy nvchecker nvchecker_source tests
|