Skip to content

feat: add kulala.nvim v3 support #26

feat: add kulala.nvim v3 support

feat: add kulala.nvim v3 support #26

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up env
run: |
VERSION=${GITHUB_REF_NAME#v}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Set up golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
cache: true
- name: Lint
run: make lint