From bcbabf7b931e9ff37c071f44f90ace6bd5755e3e Mon Sep 17 00:00:00 2001 From: Scott Lessans Date: Tue, 5 Aug 2025 11:53:47 -0700 Subject: [PATCH] gate builds on tests --- .github/workflows/CI.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 38fcdb5..45b5516 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,7 +33,9 @@ jobs: with: python-version: "3.11" rust-toolchain: stable + linux: + needs: [tests] runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -68,6 +70,7 @@ jobs: path: dist musllinux: + needs: [tests] runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -102,6 +105,7 @@ jobs: path: dist windows: + needs: [tests] runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -129,6 +133,7 @@ jobs: path: dist macos: + needs: [tests] runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -155,6 +160,7 @@ jobs: path: dist sdist: + needs: [tests] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4