Skip to content

Commit

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

- name: Download ffi
run: python -m pip install requests && python livekit-rtc/rust-sdks/download_ffi.py --output $(python -m site --user-site)/livekit/rtc/resources
run: python3 -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: python -m pip install --upgrade mypy
run: python3 -m pip install --upgrade mypy

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

- name: List Packages
run: python -m pip list
run: python3 -m pip list

- name: Check Types
run: python -m mypy -m livekit.protocol -m livekit.api -m livekit.rtc
run: python3 -m mypy --module='livekit.protocol' --module='livekit.api' --module 'livekit.rtc'

0 comments on commit 1fee61e

Please sign in to comment.