Simplify dependency installation in CI workflow

This commit is contained in:
Slipstreamm 2025-06-13 00:10:24 -06:00
parent 66eb50833b
commit 7354ff2244

View File

@ -32,7 +32,8 @@ jobs:
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r requirements.txt
pip install -e .
- name: Run Pyright
run: |