Update ci.yml

This commit is contained in:
Slipstream 2025-06-13 00:03:28 -06:00 committed by GitHub
parent 91821e1c1d
commit 2e72103b6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install deps
run: |
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Pyright
run: pyright