parent 080b288fd29ec64810432bf9127c1a34a4f0ed68 (#220) #392
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: Release | |
on: | |
pull_request: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
# NOTE: Uncomment "if" if you do not want this to run for every PR. | |
# if: ((github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || contains(github.event.pull_request.labels.*.name, 'Build wheels')) | |
with: | |
test_extras: test | |
test_command: pytest $GITHUB_WORKSPACE/specreduce/tests | |
secrets: | |
pypi_token: ${{ secrets.PYPI_API_TOKEN }} |