We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bf458d commit 64aa7d1Copy full SHA for 64aa7d1
1 file changed
justfile
@@ -1,12 +1,25 @@
1
docker_image := "reqlang-expr:0.7.0"
2
3
-# Build docker image for reqlang cli
+# List commands
4
+default:
5
+ just --list
6
+
7
+# Run tests
8
+test:
9
+ cargo test
10
11
+# Run tests with coverage enabled
12
+coverage:
13
+ ./coverage.sh
14
15
+# Run the repl
16
+repl *args:
17
+ ./repl.sh {{args}}
18
19
+# Build repl docker image
20
build-docker:
21
docker build -t {{docker_image}} .
22
-build-docker-no-cache:
- docker build --no-cache -t {{docker_image}} .
-
-# Run docker image for reqlang cli
23
+# Run repl in built docker image
24
run-docker *cli_args:
25
docker run -it --rm --read-only {{docker_image}} {{cli_args}}
0 commit comments