Make calibrated_visibilities store flare location at phase_center, ra… #189
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: | |
# branches: | |
# - 'main' | |
# - '*.*' | |
# - '!*backport*' | |
# - '*' | |
# tags: | |
# - 'v*' | |
# - '!*dev*' | |
# - '!*pre*' | |
# - '!*post*' | |
pull_request: | |
# Allow manual runs through the web UI | |
workflow_dispatch: | |
jobs: | |
core: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
coverage: codecov | |
envs: | | |
- linux: py39 | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test: | |
needs: [core] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
envs: | | |
- macos: py39 | |
- windows: py39 | |
doc: | |
needs: [test] | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
default_python: '3.9' | |
pytest: false | |
libraries: | | |
apt: | |
- libopenjp2-7 | |
- graphviz | |
envs: | | |
- linux: build_docs |