-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (40 loc) · 1.37 KB
/
CI_docs_build_and_check.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
# Copyright (c) 2020-2023 MeteoSwiss, created by F.P.A. Vogt; [email protected]
name: CI_docs_check
on:
# Executed on push to Master in the odd even that the docs is modified straight from there.
push:
branches: [ master ]
pull_request:
branches: [ master, develop ]
jobs:
docs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
steps:
# Checkout our repository
- name: Checkout current repository
uses: actions/checkout@v4
# Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# Install any dependency we require for the docs
- name: Install dependancies
run: |
python -m pip install --upgrade pip
shell: bash
# Here, let's install our module to make sure all the dependencies specified in setup.py are
# also installed, including those required for dev work
- name: Install our module
run: pip install -e .[dev]
shell: bash
# Launch a home-made python script to compile and check the docs.
- name: Compile the docs and look for errors/warnings
run: |
cd ./docs
python ../.github/workflows/docs_check.py
shell: bash