We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc14628 commit fd690f9Copy full SHA for fd690f9
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+on: [push, pull_request]
2
+
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ luaVersion:
9
+ - "5.2"
10
+ - "5.3"
11
+ - "5.4"
12
+ - "luajit-2.1"
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: leafo/gh-actions-lua@v12
16
+ with:
17
+ luaVersion: ${{ matrix.luaVersion }}
18
+ - uses: leafo/gh-actions-luarocks@v6
19
+ - name: Install busted
20
+ run: luarocks install busted
21
+ - name: Run tests
22
+ run: busted -p _test .
0 commit comments