Skip to content

Commit 291e709

Browse files
committed
Add more versions of Python to GHA build matrix
1 parent c74a009 commit 291e709

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ on:
77

88
jobs:
99
documentation:
10-
name: Build docs on ${{ matrix.os }}
10+
name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }}
1111
runs-on: ${{ matrix.os }}
1212

1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
16+
python-version: ["3.7", "3.8", "3.9"]
1617

1718
steps:
1819
- uses: actions/checkout@v2
1920
- name: Set up Python
2021
uses: actions/setup-python@v1
2122
with:
22-
python-version: 3.7
23+
python-version: ${{ matrix.python-version }}
2324
- name: Build docs
2425
run: |
2526
cd docs && make check

0 commit comments

Comments
 (0)