Skip to content

feat(ui): add Disconnect button for active cluster #32

feat(ui): add Disconnect button for active cluster

feat(ui): add Disconnect button for active cluster #32

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with docs
- name: Lint with ruff
run: poetry run ruff check src/ tests/
- name: Type-check with mypy
run: poetry run mypy src/kubeidea/
- name: Run tests
run: poetry run pytest
- name: Build docs
run: poetry run mkdocs build --strict