Update ci.yaml #351
Workflow file for this run
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] | |
- uses: actions/checkout@v4 | |
- uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest # NOTE: we recommend pinning to a specific version in case of formatting changes | |
# CLI arguments | |
args: --check ./src | |
- 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 |