Skip to content

Commit 065ec3f

Browse files
simplify documentation (#531)
1 parent 864c5ec commit 065ec3f

File tree

24 files changed

+190
-173
lines changed

24 files changed

+190
-173
lines changed

.github/workflows/test_GNNGraphs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
Pkg.test("GNNGraphs"; coverage=true)
4242
- uses: julia-actions/julia-processcoverage@v1
4343
with:
44-
directories: ./GNNGraphs/src
44+
directories: GNNGraphs/src,GNNGraphs/ext
4545
- uses: codecov/codecov-action@v5
4646
with:
4747
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/test_GNNLux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ jobs:
4141
Pkg.test("GNNLux"; coverage=true)
4242
- uses: julia-actions/julia-processcoverage@v1
4343
with:
44-
# directories: ./GNNLux/src, ./GNNLux/ext
45-
directories: ./GNNLux/src
44+
directories: GNNLux/src,GNNGraphs/src,GNNGraphs/ext,GNNlib/src,GNNlib/ext
4645
- uses: codecov/codecov-action@v5
4746
with:
4847
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/test_GNNlib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
Pkg.test("GNNlib"; coverage=true)
4242
- uses: julia-actions/julia-processcoverage@v1
4343
with:
44-
directories: ./GNNlib/src ./GNNGraphs/src
44+
directories: GNNlib/src,GNNlib/ext,GNNGraphs/src,GNNGraphs/ext
4545
- uses: codecov/codecov-action@v5
4646
with:
4747
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/test_GraphNeuralNetworks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
Pkg.test("GraphNeuralNetworks"; coverage=true)
4242
- uses: julia-actions/julia-processcoverage@v1
4343
with:
44-
directories: ./GraphNeuralNetworks/src ./GNNGraphs/src ./GNNlib/src
44+
directories: GraphNeuralNetworks/src,GNNGraphs/src,GNNGraphs/ext,GNNlib/src,GNNlib/ext
4545
- uses: codecov/codecov-action@v5
4646
with:
4747
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ GNNGraphs/docs/build
1515
GNNlib/docs/build
1616
GNNLux/docs/build
1717
GraphNeuralNetworks/docs/build
18-
tutorials/docs/build
18+
GraphNeuralNetworks/docs/src/other
19+
tutorials/docs/build

GNNGraphs/docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ makedocs(;
1616
format = Documenter.HTML(; mathengine, prettyurls, assets = assets, size_threshold=nothing),
1717
sitename = "GNNGraphs.jl",
1818
pages = ["Home" => "index.md",
19-
"Graphs" => ["gnngraph.md", "heterograph.md", "temporalgraph.md"],
20-
"Datasets" => "datasets.md",
19+
"Guides" => [
20+
"Graphs" => ["guides/gnngraph.md", "guides/heterograph.md", "guides/temporalgraph.md"],
21+
"Datasets" => "guides/datasets.md",
22+
],
2123
"API Reference" => [
2224
"GNNGraph" => "api/gnngraph.md",
2325
"GNNHeteroGraph" => "api/heterograph.md",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)