Skip to content

Commit

Permalink
add type checking to CI (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-thomm committed May 19, 2024
1 parent dd36942 commit de3063f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/type-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ jobs:
with:
python-version: 3.x
architecture: x64
- name: Install ryvencore
run: python -m pip install ryvencore --user
- name: Install ryvencore-qt dependencies
run: python -m pip install . --user && python -m pip uninstall ryvencore-qt --yes
working-directory: ./ryvencore-qt
- name: Install Ryven dependencies
run: python -m pip install . --user && python -m pip uninstall ryven --yes
working-directory: ./ryven-editor
- name: Install type-checking dependencies
run: python -m pip install mypy, pyside2 --user
- name: Typecheck
run: mypy
working-directory: .

0 comments on commit de3063f

Please sign in to comment.