Skip to content

Commit

Permalink
ENH: print colors
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Dec 15, 2023
1 parent b04e382 commit 0efe57c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/julia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ concurrency:

env:
JULIA_CI: "true"
JULIA_COLOR: "yes"

on:
push:
Expand Down Expand Up @@ -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/
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.rulers": [88]
Expand Down

0 comments on commit 0efe57c

Please sign in to comment.