mirror of
https://github.com/lilydjwg/nvchecker
synced 2025-01-13 01:30:54 +00:00
try run mypy with github actions
This commit is contained in:
parent
894706819a
commit
34f7de18c0
15
.github/workflows/mypy.yaml
vendored
Normal file
15
.github/workflows/mypy.yaml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: run mypy
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
build:
|
||||
name: run mypy
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: archlinux
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
- name: Install deps
|
||||
run: pacman -Syu --noconfirm python-tornado python-pytest python-pytest-asyncio python-pytest-httpbin python-flaky python-structlog python-toml python-aiohttp python-httpx mypy
|
||||
- name: Run mypy
|
||||
run: mypy nvchecker nvchecker_source tests
|
Loading…
Reference in New Issue
Block a user