Files
quickbot_cli/.gitea/workflows/ci.yaml
Alexander Kalinovsky 41bbc0bf58
Some checks failed
CI / test (3.13) (push) Successful in 42s
Publish to TestPyPI / build-publish (release) Failing after 29s
Publish to PyPI / build-publish (release) Has been skipped
fix: update MyPy command in CI workflow to check the entire project
2025-08-26 20:23:41 +03:00

44 lines
870 B
YAML

# SPDX-FileCopyrightText: 2025 Alexander Kalinovsky <a@k8y.ru>
#
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches:
- main
- dev
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Ruff (lint + format check)
run: |
uv run ruff check .
uv run ruff format --check
- name: MyPy
run: |
uv run mypy .
- name: Pytest
run: |
uv run pytest