-
Notifications
You must be signed in to change notification settings - Fork 75
50 lines (44 loc) · 1.15 KB
/
docs-conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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.10'
os: Windows
- python-version: 3.11
os: macOS
- python-version: 3.12
os: macOS
steps:
- name: Checkout source
uses: actions/checkout@v4
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: ''