Use checkout action and direct python setup
Some checks failed
CI / test (push) Failing after 4s

This commit is contained in:
2026-03-22 12:30:56 +00:00
parent f77c896ca3
commit 12e3018523

View File

@@ -9,9 +9,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Python
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v
- uses: actions/checkout@v4
- name: Setup Python
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v