From 9e05d6bd5478f019ea840447f4651f818413e0c0 Mon Sep 17 00:00:00 2001 From: "Nathaniel D. Hoffman" <36977879+denehoffman@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:12:35 -0500 Subject: [PATCH] ci: try globing it --- .github/workflows/maturin.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maturin.yml b/.github/workflows/maturin.yml index 4497c94..5228c72 100644 --- a/.github/workflows/maturin.yml +++ b/.github/workflows/maturin.yml @@ -60,7 +60,7 @@ jobs: set -e python3 -m venv .venv source .venv/bin/activate - pip install dist/wheels-linux-${{ matrix.platform.target }} + pip install dist/wheels-linux-${{ matrix.platform.target }}* pip install pytest pytest - name: pytest @@ -76,7 +76,7 @@ jobs: pip3 install -U pip pytest run: | set -e - pip3 install dist/wheels-linux-${{ matrix.platform.target }} + pip3 install dist/wheels-linux-${{ matrix.platform.target }}* pytest musllinux: @@ -120,7 +120,7 @@ jobs: apk add py3-pip py3-virtualenv python3 -m virtualenv .venv source .venv/bin/activate - pip install dist/wheels-musllinux-${{ matrix.platform.target }} + pip install dist/wheels-musllinux-${{ matrix.platform.target }}* pip install pytest pytest - name: pytest @@ -136,7 +136,7 @@ jobs: set -e python3 -m virtualenv .venv source .venv/bin/activate - pip install dist/wheels-musllinux-${{ matrix.platform.target }} + pip install dist/wheels-musllinux-${{ matrix.platform.target }}* pip install pytest pytest @@ -173,7 +173,7 @@ jobs: set -e python3 -m venv .venv source .venv/Scripts/activate - pip install dist/wheels-windows-${{ matrix.platform.target }} + pip install dist/wheels-windows-${{ matrix.platform.target }}* pip install pytest pytest @@ -207,7 +207,7 @@ jobs: set -e python3 -m venv .venv source .venv/bin/activate - pip install dist/wheels-macos-${{ matrix.platform.target }} + pip install dist/wheels-macos-${{ matrix.platform.target }}* pip install pytest pytest