Fix CI workflow configuration and pyproject.toml dependencies
This commit is contained in:
@@ -25,13 +25,19 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -e ".[dev]"
|
pip install pytest pytest-cov
|
||||||
|
pip install typer rich pyyaml
|
||||||
|
pip install tomli
|
||||||
|
|
||||||
- name: Run tests with pytest
|
- name: Run tests with pytest
|
||||||
run: pytest -v --tb=short
|
run: pytest -v --tb=short
|
||||||
|
|
||||||
- name: Run linting with ruff
|
- name: Lint with ruff
|
||||||
run: ruff check .
|
run: |
|
||||||
|
pip install ruff
|
||||||
|
ruff check .
|
||||||
|
|
||||||
- name: Run type checking with mypy
|
- name: Type check with mypy
|
||||||
run: mypy src/
|
run: |
|
||||||
|
pip install mypy
|
||||||
|
mypy src/
|
||||||
|
|||||||
Reference in New Issue
Block a user