update warning #1671
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: | |
retrieve_cache: | |
uses: spacetelescope/webbpsf/.github/workflows/retrieve_cache.yml@beda656c80a0254e6f80649d9c9c49235634522f # v1.4.0 | |
with: | |
minimal: true | |
tests: | |
needs: [ retrieve_cache ] | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Check for Sphinx doc build errors | |
os: ubuntu-latest | |
python: '3.10' | |
toxenv: docbuild | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Python dependencies | |
run: pip install tox tox-conda>=0.2 | |
- name: Get WebbPSF Data | |
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ${{ needs.retrieve_cache.outputs.cache_path }} | |
key: ${{ needs.retrieve_cache.outputs.cache_key }} | |
- name: Set WebbPSF data path | |
run: echo "WEBBPSF_PATH=${{ needs.retrieve_cache.outputs.cache_path }}/stpsf-data/" >> $GITHUB_ENV | |
- name: Check conda info | |
run: conda info | |
- name: Run Sphinx doc build | |
run: tox -e ${{ matrix.toxenv }} |