Use explicit checkout action and simplified pip commands

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:
runs-on: ubuntu-latest
steps:
- name: Checkout code
run: |
ls -la
pwd
- name: Install dependencies
run: |
pip install -e . pytest pytest-asyncio
- name: Run tests
run: |
python -m pytest tests/ -v
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: pip install -e . pytest pytest-asyncio
- name: Test
run: python -m pytest tests/ -v