Skip to content

Commit

Permalink
Try to improve the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathoz committed Nov 8, 2023
1 parent bedec16 commit 1a26a53
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/busted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup lua
uses: leafo/gh-actions-lua@v9
with:
luaVersion: "5.1"
luaVersion: '5.1'

- name: Setup luarocks
uses: leafo/gh-actions-luarocks@v4
Expand All @@ -25,4 +25,11 @@ jobs:
- name: Run test
uses: lunarmodules/[email protected]
with:
args: --run=ci
args: --run=ci --output=junit > busted.xml

- name: Report test
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: 'busted.xml'
check_name: 'Test Report'
5 changes: 2 additions & 3 deletions .github/workflows/luacheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup lua
uses: leafo/gh-actions-lua@v9
with:
luaVersion: "5.1"
luaVersion: '5.1'

- name: Setup luarock
uses: leafo/gh-actions-luarocks@v4
Expand All @@ -32,5 +32,4 @@ jobs:
if: always()
with:
report_paths: 'report.xml'
check_name: 'junit-report'
annotate_notice: false
check_name: 'Lint Report'

0 comments on commit 1a26a53

Please sign in to comment.