Skip to content

Commit b29c1d8

Browse files
Merge branch 'SciML:main' into main
2 parents e0227d0 + a592093 commit b29c1d8

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ on:
33
pull_request:
44
branches:
55
- main
6+
paths-ignore:
7+
- 'docs/**'
68
push:
79
branches:
810
- main
11+
paths-ignore:
12+
- 'docs/**'
913
jobs:
1014
test:
1115
runs-on: ubuntu-latest

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: format-check
33
on:
44
push:
55
branches:
6-
- 'master'
6+
- 'main'
77
- 'release-'
88
tags: '*'
99
pull_request:

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
SymbolicNumericIntegration = "78aadeae-fbc0-11eb-17b6-c7ec0477ba9e"
44

55
[compat]
6-
Documenter = "0.27"
6+
Documenter = "1"
77
SymbolicNumericIntegration = "1"

docs/make.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ makedocs(sitename = "SymbolicNumericIntegration.jl",
99
authors = "Shahriar Iravanian",
1010
modules = [SymbolicNumericIntegration],
1111
clean = true, doctest = false, linkcheck = true,
12-
warnonly = true,
13-
format = Documenter.HTML(analytics = "UA-90474609-3",
14-
assets = ["assets/favicon.ico"],
12+
warnonly = [:missing_docs],
13+
format = Documenter.HTML(assets = ["assets/favicon.ico"],
1514
canonical = "https://docs.sciml.ai/SymbolicNumericIntegration/stable/"),
1615
pages = pages)
1716

docs/src/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,20 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
197197
```@raw html
198198
</details>
199199
```
200+
201+
```@eval
202+
using TOML
203+
using Markdown
204+
version = TOML.parse(read("../../Project.toml", String))["version"]
205+
name = TOML.parse(read("../../Project.toml", String))["name"]
206+
link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
207+
"/assets/Manifest.toml"
208+
link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
209+
"/assets/Project.toml"
210+
Markdown.parse("""You can also download the
211+
[manifest]($link_manifest)
212+
file and the
213+
[project]($link_project)
214+
file.
215+
""")
216+
```

0 commit comments

Comments
 (0)