diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3b648cf..5bb5a46 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,13 +25,19 @@ jobs: - name: Install dependencies run: | 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 run: pytest -v --tb=short - - name: Run linting with ruff - run: ruff check . + - name: Lint with ruff + run: | + pip install ruff + ruff check . - - name: Run type checking with mypy - run: mypy src/ \ No newline at end of file + - name: Type check with mypy + run: | + pip install mypy + mypy src/