mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
25 lines
521 B
YAML
25 lines
521 B
YAML
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
|