fix: CI with just Python steps, no apt-get
Some checks failed
CI / test (push) Failing after 2s

This commit is contained in:
2026-03-22 17:05:34 +00:00
parent db48369879
commit 452285f62d

View File

@@ -8,5 +8,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Hello
run: echo "Hello World"
- name: Check Python
run: python3 --version
- name: Check pip
run: pip3 --version
- name: Install deps
run: pip3 install -e ".[dev]"
- name: Lint
run: ruff check src/
- name: Type check
run: mypy src/
- name: Test
run: pytest tests/ -v