2022-03-02 17:21:18 +00:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
testy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-08-10 04:50:35 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-02 17:21:18 +00:00
|
|
|
with:
|
|
|
|
# tests.lua expects top level folder to be 'batteries'
|
|
|
|
path: 'batteries'
|
|
|
|
- name: Setup Lua
|
2023-08-08 03:00:29 +00:00
|
|
|
uses: leafo/gh-actions-lua@v10
|
2022-03-02 17:21:18 +00:00
|
|
|
with:
|
|
|
|
luaVersion: 5.4
|
|
|
|
- name: Setup Lua Rocks
|
|
|
|
uses: leafo/gh-actions-luarocks@v4
|
|
|
|
- name: Setup testy
|
|
|
|
# Install from github because rock is 6+ years old.
|
|
|
|
run: luarocks install https://raw.githubusercontent.com/siffiejoe/lua-testy/master/testy-scm-0.rockspec
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
cd batteries
|
2022-03-07 01:10:20 +00:00
|
|
|
testy.lua .test/tests.lua
|