Add Gitea Actions workflow: ci.yml
Some checks failed
CI / test (push) Failing after 15s

This commit is contained in:
2026-02-02 15:51:14 +00:00
parent 89e310f20c
commit a7fc507e04

View File

@@ -14,11 +14,6 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- name: Install dependencies - run: pip install -e ".[dev]"
run: | - run: pytest tests/ -v
python -m pip install --upgrade pip - run: ruff check .
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v
- name: Check coverage
run: pytest tests/ --cov=src --cov-report=term-missing