mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Initial commit
This commit is contained in:
commit
cb002f4f27
50 changed files with 4666 additions and 0 deletions
25
.github/workflows/unit-test.yml
vendored
Normal file
25
.github/workflows/unit-test.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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
|
||||
latest: true
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue