diff --git a/README.md b/README.md index 17c4d4c..f01b146 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ typst julia uv bun +bash +go nix cargo diff --git a/justfile b/justfile index 2cd0db7..34d506b 100644 --- a/justfile +++ b/justfile @@ -1,15 +1,19 @@ +default: test_langs + +test_langs: + # Test all languages and tools in this project + uv run python ./main.py + julia ./src/main.jl + bun run ./index.ts + go run ./src/main.go + bash ./src/bscript.sh + + go mod graph + cargo run + nix flake info + neville: julia -i ./src/neville-algo-ml.jl doc: typst compile ./src/ocs.typ - -test_langs: - # Test all languages and tools in this project - cargo run - uv run python ./main.py - julia ./src/main.jl - nix flake info - bun run ./index.ts - go mod graph - go run ./src/main.go diff --git a/src/bscript.sh b/src/bscript.sh new file mode 100644 index 0000000..a8d2734 --- /dev/null +++ b/src/bscript.sh @@ -0,0 +1 @@ +echo "This is from bash!"