Skip to content

Commit dcf65e6

Browse files
authored
docs 1.0 upgrade (#192)
* fix docs * allow tagbot to build docs
1 parent d692a43 commit dcf65e6

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,12 @@ jobs:
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16-
run: julia -e 'using CompatHelper; CompatHelper.main()'
16+
run: |
17+
julia -e '
18+
using CompatHelper
19+
CompatHelper.main(;
20+
subdirs=[
21+
"",
22+
"docs",
23+
],
24+
)'

.github/workflows/TagBot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ jobs:
1212
- uses: JuliaRegistries/TagBot@v1
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

docs/Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
44
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
5+
6+
[compat]
7+
Documenter = "1"
8+
Literate = "2"

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ makedocs(;
6161
"Methods" => "methods.md",
6262
# "Examples" => pages("examples")
6363
],
64+
warnonly = [:missing_docs,],
6465
)
6566

6667
if isci

0 commit comments

Comments
 (0)