Skip to content

feat: stop bundling plugin, closes #25 #43

feat: stop bundling plugin, closes #25

feat: stop bundling plugin, closes #25 #43

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Lua
uses: leafo/gh-actions-lua@v12
with:
luaVersion: "5.4"
- name: Set up LuaRocks
uses: leafo/gh-actions-luarocks@v6
with:
luaRocksVersion: "3.13.0"
- name: Install LuaCov
run: luarocks install LuaCov
- name: Run Test Suite
run: luarocks test -- -c -o TAP
- name: Upload Coverage Report
uses: actions/upload-artifact@v7
with:
name: luacov-report-${{ github.sha }}.html
path: ./luacov.report.html
archive: false