Skip to content

fix: remove accidentally committed .deps submodule, add .gitignore #10

fix: remove accidentally committed .deps submodule, add .gitignore

fix: remove accidentally committed .deps submodule, add .gitignore #10

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
brew install neovim stylua luacheck
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim .deps/plenary.nvim
- name: Check formatting
run: make format-check
- name: Lint
run: make lint
- name: Test
run: make test