Skip to content

Commit 02337f5

Browse files
committed
Add checks to workflow
1 parent 6f06ac8 commit 02337f5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/Test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ jobs:
1313
luaVersion: 5.1
1414
- name: Run test case
1515
run: lua ./tests.lua --Linux --CI
16+
- uses: LouisBrunner/[email protected]
17+
if: always()
18+
with:
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
name: Test Linux
21+
conclusion: ${{ job.status }}
1622

1723
test-windows:
1824
runs-on: windows-latest
@@ -26,3 +32,9 @@ jobs:
2632
tar -xf Lua51.zip
2733
- name: Run test case
2834
run: ./lua.exe ./tests.lua --CI
35+
- uses: LouisBrunner/[email protected]
36+
if: always()
37+
with:
38+
token: ${{ secrets.GITHUB_TOKEN }}
39+
name: Test Windows
40+
conclusion: ${{ job.status }}

0 commit comments

Comments
 (0)