File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed
Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - main
7-
7+
8+ # Allow job to be triggered manually.
9+ workflow_dispatch :
10+
11+ # Cancel in-progress jobs when pushing to the same branch.
812concurrency :
913 group : ${{ github.workflow }}-${{ github.ref }}
1014 cancel-in-progress : true
1115
1216jobs :
1317 documentation :
14- name : Build docs on ${{ matrix.os }}
15- runs-on : ${{ matrix.os }}
16-
17- strategy :
18- matrix :
19- os : [ubuntu-latest, macos-latest]
18+ name : Build docs on ubuntu-latest
19+ runs-on : ubuntu-latest
2020
2121 steps :
22- - uses : actions/checkout@v3
22+ - name : Acquire sources
23+ uses : actions/checkout@v4
24+
2325 - name : Set up Python
24- uses : actions/setup-python@v4
26+ uses : actions/setup-python@v5
2527 with :
26- python-version : 3.11
28+ python-version : " 3.13"
29+ cache : ' pip'
30+ cache-dependency-path : |
31+ docs/requirements.txt
32+
2733 - name : Build docs
2834 run : |
2935 cd docs && make check
You can’t perform that action at this time.
0 commit comments