From a02d2f7f6ace30236985b6937fbd295117fb7b4d Mon Sep 17 00:00:00 2001 From: raylu <90059+raylu@users.noreply.github.com> Date: Tue, 23 Jan 2024 19:44:16 -0800 Subject: [PATCH] run mypy in github actions --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c962be9..ee84114 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,8 +18,10 @@ jobs: python-version: '3.10' cache: pip - name: install - run: pip3 install --quiet --editable . ruff + run: pip3 install --quiet --editable . ruff mypy types-requests - name: unit test run: python3 -m unittest discover --verbose - name: ruff run: ruff check --output-format=github . + - name: mypy + run: mypy .