From 600bc673efd41d558bbf2026dcae2fad4a48ef8e Mon Sep 17 00:00:00 2001 From: Antonio Ettorre Date: Wed, 6 Dec 2023 15:13:03 +0100 Subject: [PATCH] change kind of test --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c276a2198..1d8d37fc9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,11 +44,11 @@ jobs: CIBW_ARCHS: "${{ matrix.archs }}" CIBW_PRERELEASE_PYTHONS: True CIBW_SKIP: "*musllinux* pp*-win* pp31*" - CIBW_BUILD: cp310-* CIBW_BUILD_VERBOSITY: 1 - + CIBW_TEST_COMMAND: > + python -c "import psutil" && - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels path: wheelhouse @@ -60,8 +60,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: - python-version: 3.x - - uses: actions/download-artifact@v3 + python-version: 3.11 + - uses: actions/download-artifact@v4 with: name: wheels path: wheelhouse