jecs/.github/workflows/analysis.yaml
EncodedVenom a0f33e53c3
Update analysis.yaml
Putting this in another PR
2024-10-19 19:41:28 -04:00

19 lines
427 B
YAML

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 Luau
uses: encodedvenom/install-luau@v2.1
- name: Analyze
run: |
output=$(luau-analyze src || true) # Suppress errors for now.