Skip to content

feat(powernap): import lsps from nvim-lspconfig (#719) #644

feat(powernap): import lsps from nvim-lspconfig (#719)

feat(powernap): import lsps from nvim-lspconfig (#719) #644

Workflow file for this run

# auto-generated by scripts/builds. DO NOT EDIT.
name: windows
on:
push:
branches:
- main
pull_request:
paths:
- windows/**
- .github/workflows/windows.yml
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./windows
steps:
- uses: actions/checkout@v6
with:
lfs: true
- uses: actions/setup-go@v6
with:
go-version-file: ./windows/go.mod
cache: true
cache-dependency-path: ./windows/go.sum
- run: go build -v ./...
- run: |
go test -race -covermode=atomic -coverprofile='coverage.txt' ./...
- uses: codecov/codecov-action@v5
with:
file: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}
dependabot:
needs: [build]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash --auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
lint:
uses: charmbracelet/meta/.github/workflows/lint.yml@main
with:
directory: windows