Test vs. pandas 3.0.0rc0 #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Wheels | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: ["*"] | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Fetch full git history for hatch-vcs | |
| fetch-tags: true # Fetch tags for hatch-vcs | |
| - uses: prefix-dev/setup-pixi@v0 | |
| with: | |
| pixi-version: v0.60.0 | |
| cache: true | |
| environments: dist | |
| - name: Build sdist and wheels | |
| run: pixi run dist | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install wheel | |
| run: pip install dist/*.whl | |
| - name: Smoke test | |
| working-directory: /tmp | |
| run: | | |
| cp ${{ github.workspace }}/smoke_test.py . | |
| python smoke_test.py | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: dist | |
| path: dist/* | |
| if-no-files-found: error |