RCAL-856: WCS should roundtrip with sufficient accuracy #2040
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: test on schedule | |
on: | |
schedule: | |
# Weekly Monday 6AM build | |
- cron: "0 0 * * 1" | |
pull_request: | |
# We also want this workflow triggered if the `Weekly CI` label is | |
# added or present when PR is updated | |
types: | |
- opened | |
- reopened | |
- labeled | |
- unlabeled | |
- synchronize | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
data: | |
if: (github.repository == 'spacetelescope/romancal' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run scheduled tests'))) | |
uses: ./.github/workflows/data.yml | |
crds_contexts: | |
uses: spacetelescope/crds/.github/workflows/contexts.yml@master | |
test: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
needs: [ data, crds_contexts ] | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
setenv: | | |
WEBBPSF_PATH: ${{ needs.data.outputs.webbpsf_path }} | |
CRDS_PATH: ${{ needs.data.outputs.path }}/crds_cache | |
CRDS_SERVER_URL: https://roman-crds.stsci.edu | |
CRDS_CLIENT_RETRY_COUNT: 3 | |
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20 | |
cache-path: ${{ needs.data.outputs.path }} | |
cache-key: data-${{ needs.data.outputs.webbpsf_hash }}-${{ needs.crds_contexts.outputs.roman }} | |
cache-restore-keys: webbpsf-${{ needs.data.outputs.webbpsf_hash }} | |
envs: | | |
- macos: py310-webbpsf | |
pytest-results-summary: true | |
- macos: py311-sdpdeps-webbpsf | |
pytest-results-summary: true | |
- linux: py3-pyargs-webbpsf | |
pytest-results-summary: true |