File tree Expand file tree Collapse file tree 8 files changed +30
-31
lines changed Expand file tree Collapse file tree 8 files changed +30
-31
lines changed Original file line number Diff line number Diff line change 4
4
tags :
5
5
- ' *'
6
6
branches :
7
- - ' master '
7
+ - ' main '
8
8
pull_request :
9
9
branches :
10
- - ' master '
10
+ - ' main '
11
11
concurrency :
12
12
# Skip intermediate builds: always.
13
13
# Cancel intermediate builds: only if it is a pull request build.
Original file line number Diff line number Diff line change 5
5
tags :
6
6
- ' *'
7
7
branches :
8
- - ' master '
8
+ - ' main '
9
9
pull_request :
10
10
branches :
11
- - ' master '
11
+ - ' main '
12
12
13
13
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14
14
permissions :
15
15
contents : write
16
16
pages : write
17
17
id-token : write
18
18
statuses : write
19
+ pull-requests : read # Required when using `push_preview=true`
19
20
20
21
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21
22
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
Original file line number Diff line number Diff line change 4
4
tags :
5
5
- ' *'
6
6
branches :
7
- - ' master '
7
+ - ' main '
8
8
pull_request :
9
9
branches :
10
- - ' master '
10
+ - ' main '
11
11
jobs :
12
12
test :
13
13
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
Original file line number Diff line number Diff line change @@ -11,17 +11,17 @@ SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
11
11
Symbolics = " 0c5d862f-8b57-4792-8d23-62f2024744c7"
12
12
13
13
[compat ]
14
- DocStringExtensions = " 0.9.3 "
15
- SymbolicUtils = " 3.11 "
16
- Symbolics = " 6.23 "
17
- julia = " 1.10.0 "
18
- Random = " 1.10.0 "
19
- LinearAlgebra = " 1.10.0 "
20
- Test = " 1.10.0 "
21
- OrderedCollections = " 1.6 "
22
- Aqua = " 0.8"
23
- ExplicitImports = " 1.6 "
24
- JET = " 0.9.9 "
14
+ DocStringExtensions = " 0.9.4 "
15
+ SymbolicUtils = " 3.25 "
16
+ Symbolics = " 6.36 "
17
+ julia = " 1.10"
18
+ Random = " 1.10"
19
+ LinearAlgebra = " 1.10"
20
+ Test = " 1.10"
21
+ OrderedCollections = " 1.8 "
22
+ Aqua = " 0.8.11 "
23
+ ExplicitImports = " 1.11 "
24
+ JET = " 0.9.18 "
25
25
CheckConcreteStructs = " 0.1.0"
26
26
27
27
[extras ]
Original file line number Diff line number Diff line change @@ -9,20 +9,21 @@ makedocs(;
9
9
sitename= " QuestBase.jl" ,
10
10
authors= " Quest group" ,
11
11
modules= QuestBase,
12
- format= Documenter. HTML (
13
- canonical = " https://quantumengineeredsystems.github.io/QuestBase.jl/stable/" ),
14
- pages = pages,
15
- clean = true ,
16
- linkcheck = true ,
17
- warnonly = :missing_docs ,
12
+ format= Documenter. HTML (;
13
+ canonical= " https://quantumengineeredsystems.github.io/QuestBase.jl/stable/"
14
+ ),
15
+ pages= pages,
16
+ clean= true ,
17
+ linkcheck= true ,
18
+ warnonly= :missing_docs ,
18
19
draft= ! CI,
19
20
doctest= false , # We test it in the CI, no need to run it here
20
21
)
21
22
22
23
if CI
23
24
deploydocs (;
24
- repo= " github.com/QuantumEngineeredSystems/QuestBase.jl" ;
25
- # devbranch="master ",
25
+ repo= " github.com/QuantumEngineeredSystems/QuestBase.jl" ,
26
+ # devbranch="main ",
26
27
# target="build",
27
28
# branch="gh-pages",
28
29
push_preview= true ,
Original file line number Diff line number Diff line change 1
- pages = [
2
- " Home" => " index.md" ,
3
- " API" => " API.md"
4
- ]
1
+ pages = [" Home" => " index.md" , " API" => " API.md" ]
Original file line number Diff line number Diff line change 1
1
# API
2
2
3
- ## Symbolic Utilies
3
+ ## Symbolic Utilities
4
4
5
5
``` @docs
6
6
Original file line number Diff line number Diff line change 1
1
# The Common Interface for the QUEST ecosystem
2
2
3
- The QUEST common interface ties together the utilies of the ecosystem into a single unified interface.
3
+ The QUEST common interface ties together the utilities of the ecosystem into a single unified interface.
4
4
It is designed ensure compatiabilty between the different available packages.
5
5
6
6
This documentation is made to pool together the docs of the various Quest libraries
You can’t perform that action at this time.
0 commit comments