From 87afe5c0fc297e752cf6cd411e3e20a4e380879a Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Fri, 3 Apr 2026 07:57:26 -0500 Subject: [PATCH] WIP: Test composite clang-format linter (expect PASS) Point clang-format-linter at ITKClangFormatLinterAction@composite-action to test the new composite action. Build workflows disabled. No code changes - clang-format should pass. See: https://github.com/InsightSoftwareConsortium/ITKClangFormatLinterAction/pull/23 --- .github/workflows/build-test-package.yml | 21 +++++---------------- .github/workflows/clang-format-linter.yml | 2 +- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index f265ba0..71bc8db 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -1,20 +1,9 @@ name: Build, test, package -on: - push: - branches: - - main - tags: - - 'v*' - pull_request: - branches: - - main +on: [push,pull_request] jobs: - cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@main - - python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@main - secrets: - pypi_password: ${{ secrets.pypi_password }} + placeholder: + runs-on: ubuntu-latest + steps: + - run: echo "Build disabled for WIP clang-format linter test" diff --git a/.github/workflows/clang-format-linter.yml b/.github/workflows/clang-format-linter.yml index 7d1df4f..4ab6e6b 100644 --- a/.github/workflows/clang-format-linter.yml +++ b/.github/workflows/clang-format-linter.yml @@ -9,6 +9,6 @@ jobs: steps: - uses: actions/checkout@v5 - - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@main + - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@composite-action with: itk-branch: main