lsp: Add Neovim as known client identifier #1928
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
build-matrix: | |
env: | |
RQ_VERSION: v0.0.9 | |
name: Matrix | |
strategy: | |
matrix: | |
os: | |
- runner: ubuntu-latest | |
name: linux | |
static: true | |
- runner: macos-13 | |
name: macos-intel | |
static: false | |
- runner: macos-14 | |
name: macos-arm64 | |
static: true | |
runs-on: ${{ matrix.os.runner }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version-file: go.mod | |
- uses: open-policy-agent/setup-opa@34a30e8a924d1b03ce2cf7abe97250bbb1f332b5 # v2.2.0 | |
with: | |
version: edge | |
static: ${{ matrix.os.static }} | |
- run: npm install -g markdownlint-cli | |
- name: Restore rq cache | |
id: cache-rq | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/go/bin/rq | |
key: ${{ runner.os }}-${{ runner.arch }}-go-rq-${{ env.RQ_VERSION }} | |
- run: go install git.sr.ht/~charles/rq/cmd/rq@${{ env.RQ_VERSION }} | |
if: steps.cache-rq.outputs.cache-hit != 'true' | |
- name: Cache rq binary | |
if: steps.cache-rq.outputs.cache-hit != 'true' | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/go/bin/rq | |
key: ${{ runner.os }}-${{ runner.arch }}-go-rq-${{ env.RQ_VERSION }} | |
- run: build/do.rq pull_request | |
- uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1 | |
if: matrix.os.name == 'linux' | |
with: | |
version: v1.59.0 | |
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | |
with: | |
name: regal-${{ matrix.os.name }} | |
path: regal |