CI with single command step

This commit is contained in:
2026-03-22 12:40:23 +00:00
parent 30365ed9eb
commit 455fee08f6

View File

@@ -5,9 +5,8 @@ on: push
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Install
run: pip install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v
- name: Install and test
run: |
set -x
pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v