From 15d4fd2e009296b340c0d193b8267068e284c9db Mon Sep 17 00:00:00 2001 From: moul <94029+moul@users.noreply.github.com> Date: Fri, 12 Jun 2026 15:25:24 +0200 Subject: [PATCH] ci: add static checks workflow --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..29c8891 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI + +on: + pull_request: + push: + branches: + - main + - develop + - "release/**" + +jobs: + static-checks: + name: Static checks + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - name: Compile Python sources + run: python -m compileall -q src scripts + + - name: Check MCP tool parameter descriptions + run: python scripts/check_param_descriptions.py