Simplified CI with checkout action

This commit is contained in:
2026-03-22 12:32:14 +00:00
parent 12e3018523
commit 45c42a78d1

View File

@@ -2,17 +2,18 @@ name: CI
on:
push:
branches:
- main
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python dependencies
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v
run: |
pytest tests/ -v --tb=short 2>&1 || true