We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ad23c5 commit f90c7b3Copy full SHA for f90c7b3
.github/workflows/test.yml
@@ -28,6 +28,9 @@ jobs:
28
- name: Build
29
run: scripts/setup_local_luarocks.sh
30
31
+ - name: Run Tests
32
+ run: scripts/run_tests.sh
33
+
34
- name: Lint
35
run: scripts/lint_teal.sh
36
scripts/run_tests.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+set -e
3
4
+# Navigate to the root of the repo
5
+cd "$(dirname "$0")/.."
6
7
+# Set the local LuaRocks path
8
+LUAROCKS_TREE="$(pwd)/luarocks_tree"
9
10
+# Run unit tests
11
+echo "Run LuaRocks tests:"
12
+luarocks test --tree="$LUAROCKS_TREE"
0 commit comments