Fix compatibility of interactive viewer with recent versions of Matplotlib #39
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: | |
jobs: | |
test: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
envs: | | |
- linux: codestyle | |
- linux: py38-test-oldestdeps | |
- macos: py39-test | |
- windows: py39-test | |
- linux: py310-test | |
- macos: py311-test-viewer | |
- windows: py312-test | |
- linux: py313-test-devdeps | |
coverage: 'codecov' | |
publish: | |
needs: test | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
test_extras: test | |
test_command: pytest --pyargs astrodendro | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |