Use checkout action and direct python setup

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: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Setup Python - uses: actions/checkout@v4
run: | - name: Setup Python
python3 --version run: |
pip3 install -e . pytest pytest-asyncio python3 --version
- name: Run tests pip3 install -e . pytest pytest-asyncio
run: pytest tests/ -v - name: Run tests
run: pytest tests/ -v