Skip to content

feat: workflow

feat: workflow #1

Workflow file for this run

name: Run Lua Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Lua
uses: Leafo/gh-actions-lua@v8
with:
luaVersion: '5.4.3' # Specify the Lua version you want to use
- name: Install dependencies
run: |
luarocks install busted # Example: Installing the Busted testing framework
- name: Run tests
run: |
lua tests.lua