Suppress linter error #125
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: Build, test, and publish package artifact to test.pypi.org | |
| on: | |
| push: | |
| jobs: | |
| build-test: | |
| name: Build and test package | |
| uses: ./.github/workflows/build-test.yml | |
| upload-package: | |
| name: Upload package artifacts to test.pypi.org | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build-test | |
| steps: | |
| - name: Fetch package artifact | |
| id: download | |
| uses: actions/download-artifact@v4 | |
| - name: Publish package to TestPyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
| repository-url: https://test.pypi.org/legacy/ | |
| skip-existing: true |