We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d744f commit cbee7e8Copy full SHA for cbee7e8
bin/jetls_examples
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+# SPDX-FileCopyrightText: 2025 Uwe Fechner
3
+# SPDX-License-Identifier: MIT
4
+
5
+cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
6
+if [[ $(basename $(pwd)) == "bin" ]]; then
7
+ cd ..
8
+fi
9
10
+echo -e "\033[1mInstalling dependencies...\033[0m"
11
+julia --project=examples -e 'using Pkg; Pkg.instantiate()'
12
+echo -e "\033[1mChecking examples with jetls...\033[0m"
13
+jetls -t 1,0 -- check --root=. examples/*.jl
14
+echo
0 commit comments