Compare commits

...

2 Commits

Author SHA1 Message Date
Slipstreamm
1505bdfd0a Add output of pyrightconfig.json before running Pyright 2025-06-13 00:10:33 -06:00
Slipstreamm
7354ff2244 Simplify dependency installation in CI workflow 2025-06-13 00:10:24 -06:00

View File

@ -32,11 +32,11 @@ 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: |
cat pyrightconfig.json
pyright
- name: Run Tests