Skip to content

Fix typecheck and linter errors #11

Fix typecheck and linter errors

Fix typecheck and linter errors #11

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
args: check tee_gateway
- uses: astral-sh/ruff-action@v3
with:
args: format --check tee_gateway
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- run: pip install -r requirements.txt mypy==1.19.1
- run: mypy tee_gateway