JP-3967: SATURATION flag for partially saturated pixels should be propagated to the _rate DQ #1419
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 | |
| on: | |
| release: | |
| types: [released] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@9f1fedda61294df4c004c05519a3fbf3b8e1f32f # v2.3.1 | |
| with: | |
| upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | |
| targets: | | |
| # Linux wheels | |
| - cp3*-manylinux_x86_64 | |
| # MacOS wheels | |
| - cp3*-macosx_x86_64 | |
| # Until we have arm64 runners, we can't automatically test arm64 wheels | |
| - cp3*-macosx_arm64 | |
| sdist: true | |
| test_command: python -c "from stcal.ramp_fitting.ols_cas22 import _ramp, _jump, _fit; from stcal.ramp_fitting import slope_fitter" | |
| secrets: | |
| pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |