Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,25 @@ jobs:
dist/${{ steps.artifact-name.outputs.wheel }}
retention-days: 5

smoke-tests:
name: Smoke tests
needs:
- build

runs-on: ubuntu-latest

steps:
- name: Switch to using Python 3.11
uses: actions/setup-python@v6
with:
python-version: 3.11

- name: >-
Smoke-test:
retrieve the project source from an sdist inside the GHA artifact
uses: re-actors/checkout-python-sdist@release/v2
with:
source-tarball-name: ${{ steps.artifact-name.outputs.sdist }}
source-tarball-name: ${{ needs.build.outputs.sdist-artifact-name }}
workflow-artifact-name: ${{ env.dists-artifact-name }}

- name: >-
Expand Down Expand Up @@ -456,6 +469,7 @@ jobs:
if: always()

needs:
- smoke-tests
- Windows
- Ubuntu
- macOS
Expand Down