diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a2ee5da..1e94eb0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,8 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + run: | + echo "Checking out code..." + ls -la + pwd - name: Install - run: pip install -e . pytest pytest-asyncio + run: | + pip install -e . pytest pytest-asyncio - name: Test - run: python -m pytest tests/ -v \ No newline at end of file + run: | + python -m pytest tests/ -v \ No newline at end of file