Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the tested julia versions #10

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading