ci: Add check jobs to python CI (#18656)

This commit is contained in:
shortstacked
2025-08-22 09:56:50 +01:00
committed by GitHub
parent cf337de83d
commit 4d49b97fc5

View File

@@ -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"