From 5cf2ebf4062c4247c0e1695f1c2525da9a1e0602 Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Sat, 6 Apr 2024 20:32:39 +0200 Subject: [PATCH] build Python wheel in CI --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 318bcce51..476645212 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,6 +87,9 @@ jobs: - name: Build run: cmake --build build --config $BUILD_TYPE + - name: Build Python wheel + run: cmake --build build -t pypangolin_wheel + - name: Run all tests if: ${{ matrix.test == 'ON' }} run: |