diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 47421f1..5c6120c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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