Improve Documentation Site #299
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-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/[email protected] | |
with: | |
repository: Roblox/luau | |
tag: "0.620" | |
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 |