Revert to simple CI without container

This commit is contained in:
2026-03-22 12:05:21 +00:00
parent b125c95ac8
commit 02537ec354

View File

@@ -7,12 +7,12 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: python:3.11-slim
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - uses: actions/setup-python@v5
run: | with:
pip install pytest pytest-asyncio click cryptography pygments rich zeroconf python-version: '3.11'
pip install -e . - name: Install
run: pip install -e . && pip install pytest pytest-asyncio
- name: Run tests - name: Run tests
run: pytest tests/ -v run: pytest tests/ -v