Ignore false
passed as a child
#334
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-test | |
on: | |
push: | |
pull_request: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install Luau zip | |
uses: robinraju/release-downloader@v1.6 | |
with: | |
repository: Roblox/luau | |
tag: "0.651" | |
fileName: luau-ubuntu.zip | |
out-file-path: bin | |
- name: Unzip Luau | |
run: unzip bin/luau-ubuntu.zip -d bin | |
- name: Run unit tests | |
run: bin/luau test/tests.luau |