Try CI without checkout action - let Gitea auto checkout

This commit is contained in:
2026-03-22 13:10:13 +00:00
parent d078743149
commit c55650a418

View File

@@ -11,8 +11,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 run: |
echo "Checking out code..."
ls -la
pwd
- name: Install - name: Install
run: pip install -e . pytest pytest-asyncio run: |
pip install -e . pytest pytest-asyncio
- name: Test - name: Test
run: python -m pytest tests/ -v run: |
python -m pytest tests/ -v