Use explicit checkout action and simplified pip commands
Some checks failed
CI / test (push) Failing after 4s

This commit is contained in:
2026-03-22 13:09:37 +00:00
parent c2263e0ac6
commit d078743149

View File

@@ -10,13 +10,9 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout
run: | uses: actions/checkout@v4
ls -la - name: Install
pwd run: pip install -e . pytest pytest-asyncio
- name: Install dependencies - name: Test
run: | run: python -m pytest tests/ -v
pip install -e . pytest pytest-asyncio
- name: Run tests
run: |
python -m pytest tests/ -v