Skip to content

fix(dap): use test filepath from neotest positions #847

fix(dap): use test filepath from neotest positions

fix(dap): use test filepath from neotest positions #847

Workflow file for this run

name: format
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
lua:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --check .
go:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Install tools
run: make install-format-go
- name: Formatting check
run: make format-go
- name: Check for git diff
run: make git-diff