Skip to content

Release v1.0.0 - Complete rewrite with CLI and TUI tools #23

Release v1.0.0 - Complete rewrite with CLI and TUI tools

Release v1.0.0 - Complete rewrite with CLI and TUI tools #23

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras
- name: Run ruff check
run: uv run ruff check
- name: Run ruff format check
run: uv run ruff format --check
- name: Type check with mypy
run: uv run mypy src/namecheap