Skip to content

Commit

Permalink
Add justfile to use just
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Oct 30, 2023
1 parent 06c9ea6 commit 6cf140d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
default:
just --list

format:
julia -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()'

benchmark:
julia --project=benchmarks -e 'include("benchmarks/runall.jl")'

0 comments on commit 6cf140d

Please sign in to comment.