Skip to content

Commit 90f8d7b

Browse files
committed
implement skeleton
1 parent 4dc3fb5 commit 90f8d7b

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Integration Test Request"
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
integrationrequest:
9+
if: |
10+
github.event.issue.pull_request &&
11+
contains(fromJSON('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.comment.author_association)
12+
uses: ITensor/ITensorActions/.github/workflows/IntegrationTestRequest.yml@main
13+
with:
14+
localregistry: https://github.com/ITensor/ITensorRegistry.git

docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
using TensorAlgebra: TensorAlgebra
22
using Documenter: Documenter, DocMeta, deploydocs, makedocs
33

4-
DocMeta.setdocmeta!(TensorAlgebra, :DocTestSetup, :(using TensorAlgebra); recursive=true)
4+
DocMeta.setdocmeta!(
5+
TensorAlgebra, :DocTestSetup, :(using TensorAlgebra); recursive=true
6+
)
57

68
include("make_index.jl")
79

@@ -14,7 +16,7 @@ makedocs(;
1416
edit_link="main",
1517
assets=String[],
1618
),
17-
pages=["Home" => "index.md"],
19+
pages=["Home" => "index.md", "Reference" => "reference.md"],
1820
)
1921

2022
deploydocs(;

docs/src/reference.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Reference
2+
3+
```@autodocs
4+
Modules = [TensorAlgebra]
5+
```

test/runtests.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ isexamplefile(fn) =
2424
# tests in groups based on folder structure
2525
for testgroup in filter(isdir, readdir(@__DIR__))
2626
if GROUP == "ALL" || GROUP == uppercase(testgroup)
27-
for file in filter(istestfile, readdir(joinpath(@__DIR__, testgroup); join=true))
27+
groupdir = joinpath(@__DIR__, testgroup)
28+
for file in filter(istestfile, readdir(groupdir))
29+
filename = joinpath(groupdir, file)
2830
@eval @safetestset $file begin
29-
include($file)
31+
include($filename)
3032
end
3133
end
3234
end

0 commit comments

Comments
 (0)