Skip to content

Merge pull request #7 from nodetool-ai/codex/pin-mcp-v1 #28

Merge pull request #7 from nodetool-ai/codex/pin-mcp-v1

Merge pull request #7 from nodetool-ai/codex/pin-mcp-v1 #28

Workflow file for this run

name: Lint
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install linters
run: |
python -m pip install --upgrade pip
pip install ruff ty
- name: Run ruff
run: ruff check .
- name: Run ty
run: ty check .