From 0efe57c59643f30da7831683e7987cd71dfa215a Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:34:56 +0100 Subject: [PATCH] ENH: print colors --- .github/workflows/julia.yml | 5 +++-- .vscode/settings.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/julia.yml b/.github/workflows/julia.yml index 357a9979..8de6d200 100644 --- a/.github/workflows/julia.yml +++ b/.github/workflows/julia.yml @@ -6,6 +6,7 @@ concurrency: env: JULIA_CI: "true" + JULIA_COLOR: "yes" on: push: @@ -59,7 +60,7 @@ jobs: - name: Run scripts in julia directory run: | for script in notebooks/*.jl scripts/*.jl; do - echo -e "\n\n--== Running $script ==--\n" - julia --project=. "$script" && echo -e "\033[32m SUCCESS\033[0m" + echo -e "\n\n\033[34m--== Running $script ==--\033[0m\n" + julia --color=yes --project=. "$script" && echo -e "\033[32m SUCCESS\033[0m" done working-directory: julia/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 9ad5cbc2..10f2826b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -21,7 +21,7 @@ }, "[python]": { "editor.codeActionsOnSave": { - "source.organizeImports": true + "source.organizeImports": "explicit" }, "editor.defaultFormatter": "ms-python.black-formatter", "editor.rulers": [88]