mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Merge pull request #147 from Mark-Marks/luau-analyze-workflow
Add luau-analyze step to CI
This commit is contained in:
commit
96f706f8df
3 changed files with 20 additions and 1 deletions
19
.github/workflows/analysis.yaml
vendored
Normal file
19
.github/workflows/analysis.yaml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
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.
|
|
@ -1,4 +1,4 @@
|
|||
name: Stylua
|
||||
name: Styling
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
Loading…
Reference in a new issue