Skip to content

Commit c193cdb

Browse files
committed
Test with Lua 5.3, 5.4, and 5.5
1 parent 3a93676 commit c193cdb

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/check-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: leafo/gh-actions-lua@6919171ccf181b826f44b9bca76307b577217377
1818
with:
19-
luaVersion: 5.4
19+
luaVersion: 5.5
2020

2121
- uses: leafo/gh-actions-luarocks@35d062def313a7699a0d513e996bcf4352f05389
2222

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ on:
1010
jobs:
1111
test:
1212
runs-on: ubuntu-24.04
13+
strategy:
14+
matrix:
15+
lua: [5.3, 5.4, 5.5]
16+
name: Test (Lua ${{ matrix.lua }})
1317

1418
steps:
1519
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1620

1721
- uses: leafo/gh-actions-lua@6919171ccf181b826f44b9bca76307b577217377
1822
with:
19-
luaVersion: 5.4
23+
luaVersion: ${{ matrix.lua }}
2024

2125
- uses: leafo/gh-actions-luarocks@35d062def313a7699a0d513e996bcf4352f05389
2226

0 commit comments

Comments
 (0)