diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 63e6471..9a352c7 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -22,6 +22,7 @@ If you are unable to construct a minimal code that demonstrates the bug or unexp ```julia [YOUR MINIMAL RUNNABLE CODE HERE] ``` +

diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6232af8..c2624a2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,6 +11,7 @@ If practical and applicable, please include a minimal demonstration of the previ ```julia [YOUR MINIMAL DEMONSTRATION OF PREVIOUS BEHAVIOR] ``` +

Minimal demonstration of new behavior

@@ -18,6 +19,7 @@ If practical and applicable, please include a minimal demonstration of the previ ```julia [YOUR MINIMAL DEMONSTRATION OF NEW BEHAVIOR] ``` +

# How Has This Been Tested? diff --git a/.github/workflows/LiterateCheck.yml b/.github/workflows/LiterateCheck.yml index 8d04287..25c4954 100644 --- a/.github/workflows/LiterateCheck.yml +++ b/.github/workflows/LiterateCheck.yml @@ -16,7 +16,7 @@ jobs: version: 1 - name: Install Literate and generate docs run: | - julia -e 'using Pkg; Pkg.add(PackageSpec(name="Literate"))' + julia -e 'using Pkg; Pkg.add(PackageSpec(name="Literate")); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' julia -e 'include("make_readme.jl")' - name: Check if docs need to be updated run: | diff --git a/templates/default/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/templates/default/.github/ISSUE_TEMPLATE/BUG_REPORT.md index b48ec4e..26d06d0 100644 --- a/templates/default/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/templates/default/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -22,6 +22,7 @@ If you are unable to construct a minimal code that demonstrates the bug or unexp ```julia [YOUR MINIMAL RUNNABLE CODE HERE] ``` +

diff --git a/templates/default/.github/PULL_REQUEST_TEMPLATE.md b/templates/default/.github/PULL_REQUEST_TEMPLATE.md index 38f6ce6..30f2358 100644 --- a/templates/default/.github/PULL_REQUEST_TEMPLATE.md +++ b/templates/default/.github/PULL_REQUEST_TEMPLATE.md @@ -11,6 +11,7 @@ If practical and applicable, please include a minimal demonstration of the previ ```julia [YOUR MINIMAL DEMONSTRATION OF PREVIOUS BEHAVIOR] ``` +

Minimal demonstration of new behavior

@@ -18,6 +19,7 @@ If practical and applicable, please include a minimal demonstration of the previ ```julia [YOUR MINIMAL DEMONSTRATION OF NEW BEHAVIOR] ``` +

# How Has This Been Tested?