Allow control of array storage via SerializationContext #2520
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- stable | |
- '*.x' | |
tags: | |
- '*' | |
pull_request: | |
# Only cancel in-progress jobs or runs for the current workflow | |
# This cancels the already triggered workflows for a specific PR without canceling | |
# other instances of this workflow (other PRs, scheduled triggers, etc) when something | |
# within that PR re-triggers this CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
core: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.10' | |
envs: | | |
- linux: coverage | |
name: Python 3.11 coverage | |
python-version: 3.11 | |
- linux: coverage | |
name: Python 3.10 coverage | |
python-version: 3.10 | |
- linux: coverage | |
name: Python 3.9 coverage | |
python-version: 3.9 | |
coverage: codecov | |
jsonschema: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
if: (github.repository == 'asdf-format/asdf' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'jsonschema'))) | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.10' | |
envs: | | |
- linux: jsonschema | |
asdf-schemas: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.10' | |
envs: | | |
- linux: asdf-standard | |
- linux: asdf-transform-schemas | |
- linux: asdf-unit-schemas | |
test: | |
needs: [core, asdf-schemas] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.9' | |
envs: | | |
- macos: py39-parallel | |
- windows: py39-parallel | |
dev: | |
needs: [core, asdf-schemas] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.9' | |
envs: | | |
- linux: py39-devdeps-parallel | |
- linux: py310-devdeps-parallel | |
- linux: py311-devdeps-parallel | |
oldest: | |
needs: [core, asdf-schemas] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.9' | |
envs: | | |
- linux: py39-oldestdeps-parallel | |
compatibility: | |
needs: [core, asdf-schemas] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
submodules: false | |
# Any env name which does not start with `pyXY` will use this Python version. | |
default_python: '3.9' | |
envs: | | |
- linux: compatibility | |
package: | |
needs: [core, asdf-schemas] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
upload_to_pypi: false | |
upload_to_anaconda: false | |
test_extras: tests | |
test_command: pytest --pyargs asdf |