Skip to content

Commit

Permalink
Merge pull request #147 from Mark-Marks/luau-analyze-workflow
Browse files Browse the repository at this point in the history
Add luau-analyze step to CI
  • Loading branch information
EncodedVenom authored Oct 19, 2024
2 parents d6f4d78 + a0f33e5 commit 96f706f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/analysis.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]

- name: Analyze
run: |
output=$(luau-analyze src || true) # Suppress errors for now.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Stylua
name: Styling

on: [push, pull_request, workflow_dispatch]

Expand Down
File renamed without changes.

0 comments on commit 96f706f

Please sign in to comment.