Skip to content

Merge pull request #235 from opendatahub-io/kfp_included #44

Merge pull request #235 from opendatahub-io/kfp_included

Merge pull request #235 from opendatahub-io/kfp_included #44

Workflow file for this run

name: Run pre-commit
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
pre-commit-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2 # Needed for HEAD to exists
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: "3.12"
- name: Configure caching
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: precommit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install dependencies
run: |
uv sync
- name: Run pre-commit
run: |
uv run pre-commit run --all-files
- name: Test if pipeline is up-to-date
run: |
uv run make pipeline
git diff --exit-code || (echo "Pipeline is not up-to-date. Please run 'make pipeline' and commit the changes." && exit 1)
- name: test if standalone.py was updated and not standalone.tpl (no components file(s) updated)
if: "!contains(github.event.pull_request.labels.*.name, 'ignore-standalone-change')"
run: |
files_changed=$(git diff --name-only HEAD^)
echo "Files changed: $files_changed"
if [[ $files_changed == *"standalone.py"* && $files_changed != *"standalone.tpl"* && $files_changed != *"components.py"* ]]; then
echo "standalone.py was updated but not standalone.tpl."
echo "Please update standalone.tpl and run 'make standalone'."
exit 1
fi