Skip to content

Merge branch 'main' of https://github.com/Ukendio/jecs #22

Merge branch 'main' of https://github.com/Ukendio/jecs

Merge branch 'main' of https://github.com/Ukendio/jecs #22

Workflow file for this run

name: Unit Testing
on: [push, pull_request, workflow_dispatch]
jobs:
run:
name: Run Luau Tests
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install Luau
uses: encodedvenom/install-luau@v2.1
- name: Run Unit Tests
id: run_tests
run: |
output=$(luau test/tests.luau)
echo "$output"
if [[ "$output" == *"0 fails"* ]]; then
echo "Unit Tests Passed"
else
echo "Error: One or More Unit Tests Failed."
exit 1
fi