Skip to content

Commit

Permalink
install types
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Mar 19, 2024
1 parent 437a214 commit 6a9601c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/check-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,13 @@ jobs:
python-version: 3.9

- name: Download ffi
run: python3 -m pip install requests && python livekit-rtc/rust-sdks/download_ffi.py --output $(python -m site --user-site)/livekit/rtc/resources
run: python -m pip install requests && python livekit-rtc/rust-sdks/download_ffi.py --output $(python -m site --user-site)/livekit/rtc/resources

- name: Install mypy
run: python3 -m pip install --upgrade mypy
run: python -m pip install --upgrade mypy

- name: Install packages
run: python3 -m pip install ./livekit-api ./livekit-protocol ./livekit-rtc

- name: List Packages
run: python3 -m pip list
run: python -m pip install ./livekit-api ./livekit-protocol ./livekit-rtc

- name: Check Types
run: python3 -m mypy -p 'livekit-protocol' -p 'livekit-api' -p 'livekit-rtc'
run: python -m mypy --install-types -p 'livekit-protocol' -p 'livekit-api' -p 'livekit-rtc'

0 comments on commit 6a9601c

Please sign in to comment.