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: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout
run: | run: |
echo "Checking out code..." echo "Checking current directory..."
pwd
ls -la ls -la
- name: Setup Python - name: Check Python
run: | run: |
python3 --version python3 --version
pip3 --version which python3
- name: Install dependencies - name: Install
run: | run: |
pip3 install -e . pytest pytest-asyncio pip3 install -e . pytest pytest-asyncio
- name: Run tests - name: Run tests