Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 6cdccc8

Browse files
authored
Merge branch 'main' into release-please--branches--main
2 parents 51f2eab + bfa95f1 commit 6cdccc8

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- main
5+
name: docs
6+
jobs:
7+
docs:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Setup Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.10'
16+
- name: Install nox
17+
run: |
18+
python -m pip install --upgrade setuptools pip wheel
19+
python -m pip install nox
20+
- name: Run docs session
21+
run: |
22+
nox -s docs-3.10
23+
24+
docfx:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
- name: Setup Python
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: '3.10'
33+
- name: Install nox
34+
run: |
35+
python -m pip install --upgrade setuptools pip wheel
36+
python -m pip install nox
37+
- name: Run docfx session
38+
run: |
39+
nox -s docfx-3.10

0 commit comments

Comments
 (0)