Fix TestPyPI upload #127
Workflow file for this run
This file contains 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: Package Build | |
on: | |
push: | |
branches: [main] | |
tags: ['*'] | |
pull_request: | |
branches: [main] | |
# Cancel running jobs for the same workflow and branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Verify the package builds fine | |
build-package: | |
name: Build package | |
runs-on: ubuntu-latest | |
environment: package-build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: hynek/[email protected] | |
id: build-pkg | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: x # any version | |
check-latest: true | |
- name: Test installing wheel | |
run: | | |
pip install ${{ steps.build-pkg.outputs.dist }}/*.whl | |
pip uninstall --yes tm_devices | |
- name: Test installing tarball | |
run: |- | |
pip install ${{ steps.build-pkg.outputs.dist }}/*.tar.gz | |
pip uninstall --yes tm_devices |