We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac072f6 commit e35e00eCopy full SHA for e35e00e
.github/workflows/docs.yml
@@ -15,20 +15,19 @@ concurrency:
15
16
jobs:
17
documentation:
18
- name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }}
+ name: Build docs on ${{ matrix.os }}
19
runs-on: ${{ matrix.os }}
20
21
strategy:
22
matrix:
23
os: ["ubuntu-latest", "macos-latest"]
24
- python-version: ["3.10", "3.11"]
25
26
steps:
27
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
28
- name: Set up Python
29
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
30
with:
31
- python-version: ${{ matrix.python-version }}
+ python-version: '3.12'
32
- name: Build docs
33
run: |
34
cd docs && make check
0 commit comments