Ensure reproject_and_coadd handles bg-matching with one input image #543
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: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
envs: | | |
- macos: py38-test-oldestdeps | |
- macos: py39-test | |
- macos: py310-test | |
- macos: py311-test | |
- macos: py312-test | |
- linux: py38-test-oldestdeps | |
- linux: py38-test | |
- linux: py39-test | |
- linux: py310-test | |
- linux: py311-test | |
- linux: py312-test | |
- linux: py312-test-devdeps | |
- windows: py38-test-oldestdeps | |
- windows: py39-test | |
- windows: py310-test | |
- windows: py311-test | |
- windows: py312-test | |
libraries: | | |
apt: | |
- libopenblas-dev | |
coverage: 'codecov' | |
publish: | |
needs: tests | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1 | |
with: | |
test_extras: test | |
test_command: pytest -p no:warnings --pyargs reproject | |
targets: | | |
- cp*-manylinux_x86_64 | |
- cp*-manylinux_aarch64 | |
- cp*-macosx_x86_64 | |
- cp*-macosx_arm64 | |
- cp*-win_amd64 | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |