From 4d49b97fc5658491ae98290c8e8f042ae4f3df21 Mon Sep 17 00:00:00 2001 From: shortstacked Date: Fri, 22 Aug 2025 09:56:50 +0100 Subject: [PATCH] ci: Add check jobs to python CI (#18656) --- .github/workflows/ci-python.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 1e9d8c5d30..07527c42fc 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -10,7 +10,8 @@ on: - packages/@n8n/task-runner-python/** jobs: - python-ci: + lint: + name: Lint runs-on: ubuntu-latest defaults: run: @@ -38,3 +39,11 @@ jobs: - name: Lint run: uv run ruff check + + unit-test: + name: Unit tests + runs-on: ubuntu-latest + needs: lint + steps: + - name: Python unit tests + run: echo "Skipping unit tests for Python-only changes until we have Python unit tests"