Pin Sphinx version and use same install as used for tests #142
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: Run tests | |
on: | |
push: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ | |
'3.9', | |
'3.10', | |
'3.11', | |
'3.12', | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
auto-update-conda: true | |
- run: conda install --quiet --yes hdf5 | |
- run: pip install -e .[astropy,dev] | |
- run: make unittests | |
- run: coverage report | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- run: pip install ruff | |
- run: make linttest | |
docs: | |
if: github.ref == 'refs/heads/master' | |
needs: [tests, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: '3.11' | |
auto-update-conda: true | |
- run: conda install --quiet --yes hdf5 | |
- run: pip install -e .[astropy,dev] | |
- run: make doctest | |
- uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: doc/_build/html | |
publish_branch: gh-pages | |
force_orphan: true |