diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 0000000..f6121c3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,31 @@ +--- +name: bug report +about: create a bug report +title: "[BUG]" +labels: bug +assignees: '' +--- + + + +## description + + +## versions + +> `using InteractiveUtils; versioninfo()`: + +```julia + +``` + +> `using Pkg; Pkg.status()`: + +```julia + +``` + + +## minimum reproducible steps + + diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 0000000..d21ce8a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,11 @@ +--- +name: enhancement +about: suggest an enhancement idea +title: "[FR]" +labels: enhancement +assignees: '' +--- + + + +## description diff --git a/doc/make.jl b/doc/make.jl index 281ee67..75e7308 100644 --- a/doc/make.jl +++ b/doc/make.jl @@ -1,9 +1,11 @@ using Documenter, Weave +CI_FLG = get(ENV, "CI", nothing) == "true" + makedocs( modules = [Weave], format = Documenter.HTML( - prettyurls = get(ENV, "CI", nothing) == "true", + prettyurls = CI_FLG, canonical = "http://weavejl.mpastell.com/stable/", ), sitename = "Weave.jl", @@ -19,7 +21,7 @@ makedocs( ], ) -get(ENV, "CI", false) && include("make_examples.jl") +CI_FLG && include("make_examples.jl") deploydocs( repo = "github.com/JunoLab/Weave.jl.git",