Test test framework.
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 09d27a8..90f976f 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -37,4 +37,18 @@
           submodules: true
       - uses: leafo/gh-actions-lua@v5
         with:
-          luaVersion: "5.3.5"
\ No newline at end of file
+          luaVersion: "5.3.5"
+      - name: 'install LuaRocks'
+        run: |
+          wget https://luarocks.org/releases/luarocks-3.3.0.tar.gz
+          tar zxpf luarocks-3.3.0.tar.gz
+          cd luarocks-3.3.0
+          ./configure && make && sudo make install
+          cd ..
+      - name: 'install LuaUnit'
+        run: |
+          sudo luarocks install luaunit
+      - name: 'test'
+        run: |
+          cd test
+          lua test.lua 
\ No newline at end of file
diff --git a/test/test.lua b/test/test.lua
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/test/test.lua