From 71cf4876981ee1f9745ec1c0c763d632c40f554a Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Fri, 5 Jun 2026 17:05:45 +0200 Subject: [PATCH] ci: use shared ShipSoft/.github reusable pixi-cmake-build workflow Replaces the inline build/test workflow with a thin caller of ShipSoft/.github's pixi-cmake-build.yml. Same single-task invocation (`pixi run test`), now shared across SHiP repos. --- .github/workflows/build-test.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 5dd6730..774b8c0 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -12,13 +12,6 @@ on: jobs: build-and-test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - - uses: prefix-dev/setup-pixi@v0.9.6 - with: - cache: true - - - name: Build and test - run: pixi run test + uses: ShipSoft/.github/.github/workflows/pixi-cmake-build.yml@main + with: + tasks: '["test"]'