Skip to content

Commit

Permalink
Merge pull request #6 from raylu/mypy
Browse files Browse the repository at this point in the history
run mypy in github actions
  • Loading branch information
tangentstorm authored Feb 6, 2024
2 parents 3a8513e + a02d2f7 commit 3f7d526
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

0 comments on commit 3f7d526

Please sign in to comment.