Skip to content

Commit dcbf1ff

Browse files
committed
more docs cleanup
1 parent 097f62c commit dcbf1ff

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: ['3.7', '3.8', '3.9']
14+
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
1515
fail-fast: false
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919

20-
- uses: actions/setup-python@v2
20+
- uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python }}
2323

.github/workflows/doc.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ concurrency:
2121
cancel-in-progress: false
2222

2323
jobs:
24-
# Build job
2524
build:
25+
if: github.repository_owner == 'markstory'
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v3
@@ -35,15 +35,14 @@ jobs:
3535
id: pages
3636
uses: actions/configure-pages@v3
3737

38-
- name: Build doct
38+
- name: Build doc
3939
run: make -C doc html
4040

4141
- name: Upload artifact
4242
uses: actions/upload-pages-artifact@v1
4343
with:
4444
path: doc/_build/html
4545

46-
# Deployment job
4746
deploy:
4847
environment:
4948
name: github-pages

0 commit comments

Comments
 (0)