Skip to content

Commit

Permalink
Merge pull request #19 from control-toolbox/auto-juliaformatter-pr
Browse files Browse the repository at this point in the history
[AUTO] JuliaFormatter.jl run
  • Loading branch information
ocots authored Sep 8, 2024
2 parents 74283db + a1e6544 commit 0d3dbad
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
using Documenter

makedocs(
warnonly = :cross_references,
sitename = "Geometric preconditioner",
format = Documenter.HTML(
prettyurls = false,
size_threshold_ignore = ["2D-example.md"],
assets = [
makedocs(;
warnonly=:cross_references,
sitename="Geometric preconditioner",
format=Documenter.HTML(;
prettyurls=false,
size_threshold_ignore=["2D-example.md"],
assets=[
asset("https://control-toolbox.org/assets/css/documentation.css"),
asset("https://control-toolbox.org/assets/js/documentation.js"),
],
),
pages = [
pages=[
"Introduction" => "index.md",
"Indirect shooting" => "2D-example.md",
"Geometric preconditioner" => "2D-preconditioner.md",
],
)

deploydocs(repo = "github.com/control-toolbox/GeometricPreconditioner.jl.git", devbranch = "main")
deploydocs(;
repo="github.com/control-toolbox/GeometricPreconditioner.jl.git", devbranch="main"
)
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using Test

#
@testset verbose = true showtiming = true "Base" begin
for name (:aqua, :default)
for name in (:aqua, :default)
@testset "$(name)" begin
test_name = Symbol(:test_, name)
include("$(test_name).jl")
Expand Down
2 changes: 1 addition & 1 deletion test/test_aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ function test_aqua()
# do not warn about ambiguities in dependencies
Aqua.test_ambiguities(GeometricPreconditioner)
end
end
end

0 comments on commit 0d3dbad

Please sign in to comment.