Skip to content

Commit

Permalink
fix(actions): stop running lint if lua files are unchanged
Browse files Browse the repository at this point in the history
also add luarocks shield :P
  • Loading branch information
cultab committed Oct 26, 2024
1 parent 49a6242 commit f856b0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
---
on: [push, pull_request]
name: lint-test
on:
push:
paths:
- '**.lua'
pull_request:

name: lint

jobs:
stylua:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![LuaRocks](https://img.shields.io/luarocks/v/cultab/command.nvim?logo=lua&color=purple)](https://luarocks.org/modules/cultab/command.nvim)

# command.nvim

command.nvim is a simple command runner. You give it a command and it runs it in a new or existing pane of your multiplexer (or a ToggleTerm terminal).
Expand Down Expand Up @@ -65,7 +67,7 @@ Or use the user commands:

## Configuration

Configurations is done by passing setting the `vim.g.command` table.
Configurations is done by setting the `vim.g.command` table.

```lua
vim.g.command = {--[[ options go here ]]} )
Expand Down

0 comments on commit f856b0d

Please sign in to comment.