Skip to content

Commit ccb5ba5

Browse files
authored
CI: Remove building docs on macOS (#98)
1 parent 9aeea8f commit ccb5ba5

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

.github/workflows/docs.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,32 @@ on:
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.
812
concurrency:
913
group: ${{ github.workflow }}-${{ github.ref }}
1014
cancel-in-progress: true
1115

1216
jobs:
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

0 commit comments

Comments
 (0)