Skip to content

Commit e35e00e

Browse files
committed
CI: Just build with one Python version
Is there any reason to build with multiple Python versions?
1 parent ac072f6 commit e35e00e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,19 @@ concurrency:
1515

1616
jobs:
1717
documentation:
18-
name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }}
18+
name: Build docs on ${{ matrix.os }}
1919
runs-on: ${{ matrix.os }}
2020

2121
strategy:
2222
matrix:
2323
os: ["ubuntu-latest", "macos-latest"]
24-
python-version: ["3.10", "3.11"]
2524

2625
steps:
27-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2827
- name: Set up Python
29-
uses: actions/setup-python@v4
28+
uses: actions/setup-python@v5
3029
with:
31-
python-version: ${{ matrix.python-version }}
30+
python-version: '3.12'
3231
- name: Build docs
3332
run: |
3433
cd docs && make check

0 commit comments

Comments
 (0)