We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74a009 commit 291e709Copy full SHA for 291e709
1 file changed
.github/workflows/docs.yml
@@ -7,19 +7,20 @@ on:
7
8
jobs:
9
documentation:
10
- name: Build docs on ${{ matrix.os }}
+ name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }}
11
runs-on: ${{ matrix.os }}
12
13
strategy:
14
matrix:
15
os: [ubuntu-latest, macos-latest]
16
+ python-version: ["3.7", "3.8", "3.9"]
17
18
steps:
19
- uses: actions/checkout@v2
20
- name: Set up Python
21
uses: actions/setup-python@v1
22
with:
- python-version: 3.7
23
+ python-version: ${{ matrix.python-version }}
24
- name: Build docs
25
run: |
26
cd docs && make check
0 commit comments