mirror of
https://github.com/Ukendio/jecs.git
synced 2026-02-04 15:15:21 +00:00
22 lines
529 B
YAML
Executable file
22 lines
529 B
YAML
Executable file
name: analysis
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
run:
|
|
name: Run Luau Analyze
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Rokit
|
|
uses: CompeyDev/setup-rokit@v0.1.2
|
|
|
|
- name: Install Luau
|
|
run: rokit install --no-trust-check
|
|
|
|
- name: Analyze
|
|
run: |
|
|
output=$(luau-analyze src || true) # Suppress errors for now.
|