Move common resample code to stcal #3917
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 with development versions | |
on: | |
push: | |
branches: | |
- main | |
- '*x' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# Weekly Monday 9AM build | |
- cron: "0 9 * * 1" | |
workflow_dispatch: | |
inputs: | |
crds_context: | |
description: CRDS context (leave blank for latest) | |
type: string | |
required: false | |
default: '' | |
crds_server_url: | |
description: CRDS server URL | |
type: string | |
required: false | |
default: https://jwst-crds.stsci.edu | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.crds_context }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
if: (github.repository == 'spacetelescope/jwst' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run devdeps tests'))) | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@9f1f43251dde69da8613ea8e11144f05cdea41d5 # v1.15.0 | |
with: | |
setenv: | | |
CRDS_PATH: /tmp/data/crds_cache | |
CRDS_SERVER_URL: ${{ inputs.crds_server_url || 'https://jwst-crds.stsci.edu' }} | |
CRDS_CONTEXT: ${{ inputs.crds_context || 'jwst-edit' }} | |
CRDS_CLIENT_RETRY_COUNT: 3 | |
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20 | |
cache-path: /tmp/data/crds_cache | |
cache-key: crds-${{ needs.crds_context.outputs.context }} | |
envs: | | |
- linux: py3-xdist | |
pytest-results-summary: true | |
- macos: py3-xdist | |
pytest-results-summary: true | |
- linux: py311-stdevdeps-xdist | |
pytest-results-summary: true | |
- macos: py311-stdevdeps-xdist | |
pytest-results-summary: true | |
- linux: py3-stdevdeps-xdist | |
pytest-results-summary: true | |
- macos: py3-stdevdeps-xdist | |
pytest-results-summary: true | |
- linux: py311-devdeps-xdist | |
pytest-results-summary: true | |
- macos: py311-devdeps-xdist | |
pytest-results-summary: true | |
- linux: py3-devdeps-xdist | |
pytest-results-summary: true | |
- macos: py3-devdeps-xdist | |
pytest-results-summary: true |