Add schema types description to docs (and misc cleanup) #535
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 midnight build | |
- cron: "0 0 * * 1" | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- labeled | |
- unlabeled | |
- synchronize | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
data: | |
if: (github.repository == 'spacetelescope/stdatamodels' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run scheduled tests'))) | |
name: retrieve current CRDS context | |
runs-on: ubuntu-latest | |
env: | |
OBSERVATORY: jwst | |
CRDS_PATH: /tmp/crds_cache | |
CRDS_SERVER_URL: https://jwst-crds.stsci.edu | |
steps: | |
- id: crds_context | |
run: > | |
echo "pmap=$( | |
curl -s -X POST -d '{"jsonrpc": "1.0", "method": "get_default_context", "params": ["${{ env.OBSERVATORY }}"], "id": 1}' ${{ env.CRDS_SERVER_URL }}/json/ | | |
python -c "import sys, json; print(json.load(sys.stdin)['result'])" | |
)" >> $GITHUB_OUTPUT | |
# Get default CRDS_CONTEXT without installing crds client | |
# See https://hst-crds.stsci.edu/static/users_guide/web_services.html#generic-request | |
- id: crds_path | |
run: echo "path=${{ env.CRDS_PATH }}" >> $GITHUB_OUTPUT | |
- id: crds_server | |
run: echo "url=${{ env.CRDS_SERVER_URL }}" >> $GITHUB_OUTPUT | |
outputs: | |
crds_context: ${{ steps.crds_context.outputs.pmap }} | |
crds_path: ${{ steps.crds_path.outputs.path }} | |
crds_server: ${{ steps.crds_server.outputs.url }} | |
test: | |
if: (github.repository == 'spacetelescope/stdatamodels' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run scheduled tests'))) | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0 | |
needs: [ data ] | |
with: | |
setenv: | | |
CRDS_PATH: ${{ needs.data.outputs.crds_path }} | |
CRDS_SERVER_URL: ${{ needs.data.outputs.crds_server }} | |
CRDS_CLIENT_RETRY_COUNT: 3 | |
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20 | |
cache-path: ${{ needs.data.outputs.crds_path }} | |
cache-key: crds-${{ needs.data.outputs.crds_context }} | |
envs: | | |
- windows: py310-xdist | |
- macos: py311-xdist | |
- windows: py311-xdist | |
- windows: py3-xdist |