Skip to content

Commit

Permalink
ci: Introduce Lua type checking GitHub workflow (#57)
Browse files Browse the repository at this point in the history
This commit adds a new GitHub workflow for type checking the Lua
codebase. The workflow is triggered on push and pull requests to
the main branch. It utilizes the stevearc/nvim-typecheck-action@v2
action and is set to a warning level.
  • Loading branch information
tris203 authored Jun 2, 2024
1 parent 6949d40 commit 9985531
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: lua_ls-typecheck

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
build:
name: Type Check Code Base
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: stevearc/nvim-typecheck-action@v2
with:
level: Warning

0 comments on commit 9985531

Please sign in to comment.