Skip to content

Remove tests and testing infrastructure #17

Remove tests and testing infrastructure

Remove tests and testing infrastructure #17

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@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Lint with Black
run: |
poetry run black --check .
- name: Lint with isort
run: |
poetry run isort --check .
- name: Type check with mypy
run: |
poetry run mypy namecheap
- name: Lint with Ruff
run: |
poetry run ruff check .