CI: (deps): Bump dependabot/fetch-metadata from 2 to 3 #1100
This file contains hidden or 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: Build Docs (Conda) | |
| # We don't want pushes (or PRs) to gh-pages to kick anything off | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - '[0-9]+.[0-9]+.x' | |
| concurrency: | |
| group: ${{ github.workflow}}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Docs: | |
| name: ${{ matrix.os }} ${{ matrix.python-version }} | |
| runs-on: ${{ matrix.os }}-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: 3.11 | |
| os: macOS | |
| - python-version: 3.12 | |
| os: Windows | |
| - python-version: 3.13 | |
| os: macOS | |
| - python-version: 3.14 | |
| os: Windows | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 150 | |
| fetch-tags: true | |
| - name: Install from Conda | |
| uses: Unidata/MetPy/.github/actions/install-conda@main | |
| with: | |
| type: 'doc' | |
| python-version: ${{ matrix.python-version }} | |
| need-cartopy: true | |
| - name: Build docs | |
| uses: Unidata/MetPy/.github/actions/build-docs@main | |
| with: | |
| key: ${{ matrix.os }}-${{ matrix.python-version }} | |
| make-targets: '' |