mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-12-28 11:02:34 +01:00
jiriks74
c850b9e245
Breaks `lazy.nvim` because of the submodules
Fixes https://github.com/jiriks74/presence.nvim/issues/67
This reverts commit 8117a074d5
.
16 lines
419 B
YAML
16 lines
419 B
YAML
name: Luacheck
|
|
on: [push, pull_request]
|
|
jobs:
|
|
Luacheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update repositories
|
|
run: sudo apt update
|
|
- name: Install Luacheck
|
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
with:
|
|
packages: lua-check
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Luacheck linter
|
|
run: luacheck --config .luacheckrc .
|