Skip to content

refactor: Use Parameter class directly in type hints instead of _Parameter protocol #2470

refactor: Use Parameter class directly in type hints instead of _Parameter protocol

refactor: Use Parameter class directly in type hints instead of _Parameter protocol #2470

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: ruff-mypy
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
# Installing all dependencies and not just the linters as mypy needs them for type checking
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[all, dev]"
- name: Lint with ruff
run: |
ruff check .
- name: Check formatting with ruff
run: |
ruff format --diff .
ruff format --check .
- name: Lint with mypy
run: |
mypy altair tests