RCAL-661/667/654/656 Implement next round of SOC verification tests for uneven ramps #134
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: build | |
on: | |
release: | |
types: [ released ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check: | |
name: check that `requirements-sdp.txt` is populated | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- if: github.event_name == 'release' | |
run: grep -v '^ *#' requirements-sdp.txt | |
build: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
needs: [ check ] | |
with: | |
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | |
secrets: | |
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |