Fix dead links #378
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
- 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 |