Simplified CI - basic pip install and pytest
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-03-22 13:08:24 +00:00
parent 82ae30b916
commit a3c3563054

View File

@@ -9,7 +9,10 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Install package
run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v
- name: Install dependencies
run: |
pip install -e . pytest pytest-asyncio
- name: Run tests
run: |
python -m pytest tests/ -v