Debug CI - check if code is already checked out

This commit is contained in:
2026-03-22 12:30:00 +00:00
parent f91dce7143
commit 5d235fa16d

View File

@@ -8,15 +8,16 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- name: Checkout
run: |
echo "Checking out code..."
echo "Checking current directory..."
pwd
ls -la
- name: Setup Python
- name: Check Python
run: |
python3 --version
pip3 --version
- name: Install dependencies
which python3
- name: Install
run: |
pip3 install -e . pytest pytest-asyncio
- name: Run tests