Update CI workflow to include current directory output before running Pyright

This commit is contained in:
Slipstreamm 2025-06-13 00:06:52 -06:00
parent 2e72103b6a
commit 398c2c34c0

View File

@ -35,7 +35,8 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Pyright - name: Run Pyright
run: pyright run: |
pwd
- name: Run Tests - name: Run Tests
run: pytest tests/ run: pytest tests/