We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9d789 commit e76a437Copy full SHA for e76a437
bin/run
@@ -0,0 +1,12 @@
1
+W=/workspace/
2
+# Create container
3
+C=$(docker container create --rm -w $W ghcr.io/codewars/lean:latest lean test/SolutionTest.lean)
4
+
5
+# Copy files from the current directory
6
+# src/Solution.lean
7
+# src/Preloaded.lean
8
+# test/SolutionTest.lean
9
+docker container cp ./. $C:$W
10
11
+# Run tests
12
+docker container start --attach $C
0 commit comments