Merge pull request #106 from astrofrog/fix-deprecations #92
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 Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
initial_checks: | |
# Mandatory checks before CI tests | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
coverage: false | |
envs: | | |
# Code style | |
- linux: codestyle | |
tests: | |
needs: initial_checks | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
display: true | |
coverage: codecov | |
libraries: | | |
apt: | |
- '^libxcb.*-dev' | |
- libxkbcommon-x11-dev | |
- libhdf5-dev | |
brew: | |
- hdf5 | |
envs: | | |
# Standard tests | |
- linux: py38-test | |
- linux: py39-test | |
- linux: py310-test-devdeps | |
- linux: py311-test | |
- linux: py312-test-devdeps | |
- macos: py38-test | |
- macos: py39-test | |
- macos: py310-test | |
- macos: py311-test-devdeps | |
- macos: py312-test | |
- windows: py38-test | |
- windows: py39-test | |
- windows: py310-test | |
- windows: py311-test-devdeps | |
- windows: py312-test | |
publish: | |
needs: tests | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
# setup headless X server as per pyvista/setup-headless-display-action@v1 | |
libraries: '^libxcb.*-dev libxkbcommon-x11-dev xvfb' | |
test_extras: 'test,qt' | |
test_command: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & sleep 3; DISPLAY=:99.0 pytest --pyargs glue_wwt | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |