Skip to content

Commit

Permalink
feat: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Bush14 committed Jun 24, 2024
1 parent 114deb7 commit 32cae17
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 32cae17

Please sign in to comment.