From 309b32b5f1df4d28c8a9c77e6d64393b768ba8d8 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Tue, 20 Jan 2026 00:14:06 +0100 Subject: [PATCH] Add bash and go to readme --- README.md | 2 ++ justfile | 24 ++++++++++++++---------- src/bscript.sh | 1 + 3 files changed, 17 insertions(+), 10 deletions(-) create mode 100644 src/bscript.sh 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!"