-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,906 additions
and
959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
style = "blue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Julia tests | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the main branch | ||
# this is the same as Test.yml | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
branches: | ||
- main | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 10 | ||
|
||
strategy: | ||
# Without setting this, a failing test cancels all others | ||
fail-fast: false | ||
matrix: | ||
julia-version: ["1.6", "1", "~1.10.0-0"] | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
|
||
# Makes the `julia` command available | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
- uses: julia-actions/cache@v1 | ||
|
||
# 🚗 | ||
- uses: julia-actions/julia-runtest@v1 | ||
with: | ||
coverage: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/Manifest.toml | ||
/test/Manifest.toml | ||
data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
name = "PlutoTeachingTools" | ||
uuid = "661c6b06-c737-4d37-b85c-46df65de6f69" | ||
authors = ["Eric Ford <[email protected]> and contributors"] | ||
version = "0.2.11" | ||
version = "0.3.0" | ||
|
||
[deps] | ||
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | ||
HypertextLiteral = "ac1192a8-f4b3-4bfe-ba22-af5b92cd3ab2" | ||
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" | ||
Latexify = "23fbe1c1-3f47-55db-b15f-69d7ec21a316" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
PlutoLinks = "0ff47ea0-7a50-410d-8455-4348d5de0420" | ||
PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
|
||
[compat] | ||
Downloads = "<0.0.1, 1" | ||
HypertextLiteral = "0.9" | ||
LaTeXStrings = "1" | ||
Latexify = "0.15" | ||
Latexify = "0.15, 0.16" | ||
Markdown = "<0.0.1, 1" | ||
PlutoLinks = "0.1.5" | ||
PlutoUI = "0.7" | ||
julia = "1.7, 1.8" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Test"] | ||
julia = "1.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module Demo | ||
export hello, hundred | ||
|
||
function hello() | ||
return "Hello!" | ||
end | ||
|
||
hundred = 100 | ||
export hello, hundred | ||
|
||
function hello() | ||
return "Hello!" | ||
end | ||
|
||
hundred = 100 | ||
|
||
end # module |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
5ace09b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Release Notes:
5ace09b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/115389
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: