forked from mad-star-studio/Voxelis
27 lines
No EOL
437 B
YAML
27 lines
No EOL
437 B
YAML
name: Unit Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
busted_unit_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Lua
|
|
uses: leafo/setup-lua@v1
|
|
with:
|
|
lua-version: '5.1'
|
|
|
|
- name: Install Busted
|
|
run: luarocks install busted
|
|
|
|
- name: Run Busted
|
|
run: busted . |