Skip to content

Commit 96f706f

Browse files
authored
Merge pull request #147 from Mark-Marks/luau-analyze-workflow
Add luau-analyze step to CI
2 parents d6f4d78 + a0f33e5 commit 96f706f

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/analysis.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Analysis
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
run:
7+
name: Run Luau Analyze
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout Project
12+
uses: actions/checkout@v4
13+
14+
- name: Install Luau
15+
uses: encodedvenom/install-luau@v2.1
16+
17+
- name: Analyze
18+
run: |
19+
output=$(luau-analyze src || true) # Suppress errors for now.

.github/workflows/lint.yml renamed to .github/workflows/styling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Stylua
1+
name: Styling
22

33
on: [push, pull_request, workflow_dispatch]
44

File renamed without changes.

0 commit comments

Comments
 (0)