Skip to content

Commit

Permalink
Change the tested julia versions (#10)
Browse files Browse the repository at this point in the history
* Change the tested julia versions

* Add a justfile for convenience

* JuliaFormatter.jl
  • Loading branch information
nathanaelbosch authored Apr 8, 2024
1 parent 57b1b94 commit dafec45
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1.9'
- 'nightly'
- '1'
os:
- ubuntu-latest
arch:
Expand Down
8 changes: 4 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ makedocs(;
canonical = "https://nathanaelbosch.github.io/ChaoticDynamicalSystemLibrary.jl",
edit_link = "main",
assets = String[],
size_threshold_ignore = ["index.md"],),
size_threshold_ignore = ["index.md"]),
pages = [
"Home" => "index.md",
],)
"Home" => "index.md"
])

deploydocs(;
repo = "github.com/nathanaelbosch/ChaoticDynamicalSystemLibrary.jl",
devbranch = "main",)
devbranch = "main")
14 changes: 14 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
default:
just --list

format:
julia --project=@JuliaFormatter -e 'using JuliaFormatter; format(".")'

docs:
julia --project=docs docs/make.jl

servedocs:
julia --project=docs -e 'using LiveServer; serve(dir="docs/build")'

servedocs-continuously:
julia --project=docs -e 'using ProbNumDiffEq, LiveServer; servedocs()'
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using Aqua, JET

@testset "Code quality (Aqua.jl)" begin
Aqua.test_all(ChaoticDynamicalSystemLibrary;
ambiguities = (imported = false),)
ambiguities = (imported = false))
end

if VERSION >= v"1.7"
Expand Down

0 comments on commit dafec45

Please sign in to comment.