Skip to content

Commit 3b3d88a

Browse files
authored
Merge pull request #284 from JuliaImages/vs/doc-ci
Update Documentation.yml
2 parents 6f87c37 + 1fa1006 commit 3b3d88a

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/Documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
julia-version: [1]
1717
os: [ubuntu-latest]
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- uses: julia-actions/setup-julia@latest
2121
with:
2222
version: ${{ matrix.julia-version }}
2323
- name: Cache artifacts
24-
uses: actions/cache@v1
24+
uses: actions/cache@v4
2525
env:
2626
cache-name: cache-artifacts
2727
with:

docs/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1616
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
1717

1818
[compat]
19-
DemoCards = "0.4"
20-
Documenter = "0.27"
19+
DemoCards = "0.5"
20+
Documenter = "1"

docs/make.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,21 @@ demos, demos_cb, demos_assets = makedemos("demos")
1111
assets = []
1212
isnothing(demos_assets) || (push!(assets, demos_assets))
1313
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true",
14-
assets = assets)
14+
assets = assets,
15+
size_threshold = 1_000_000,
16+
edit_link = nothing)
1517

1618
makedocs(
1719
modules=[ImageFiltering, OffsetArrays, Kernel, KernelFactors, ImageFiltering.MapWindow],
20+
warnonly = :missing_docs,
1821
format=format,
1922
sitename="ImageFiltering",
2023
pages=[
2124
"index.md",
2225
"Tutorials" => [
2326
"Tutorial 1" => "tutorials/tutorial1.md",
24-
],
25-
demos,
27+
],
28+
demos,
2629
"Filtering images" => "filters.md",
2730
"Kernels" => "kernels.md",
2831
"Gradients" => "gradients.md",

0 commit comments

Comments
 (0)