Skip to content

fixup: ci

fixup: ci #2

Workflow file for this run

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-build-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
defaults:
run:
shell: bash
jobs:
check_compilation:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
nvim_tag: [nightly]
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:

Check failure on line 27 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
NVIM: '
steps:
- uses: actions/checkout@v4
- uses: tree-sitter/setup-action/cli@v1
- uses: ilammy/msvc-dev-cmd@v1
- name: Install and prepare Neovim
env:
NVIM_TAG: ${{ matrix.nvim_tag }}
run: |
bash ./scripts/ci-install.sh
- name: Setup Parsers Cache
id: parsers-cache
uses: actions/cache@v4
with:
path: ~/.local/share/nvim/site/parser/
key: parsers-${{ hashFiles('parsers.lua') }}
- name: Compile parsers
if: steps.parsers-cache.outputs.cache-hit != 'true'
run: $NVIM -l ./scripts/install-parsers.lua --max-jobs=10
- name: Check queries
run: make checkquery
- name: Run tests
run: make tests
- name: Lint docs
run: |
make docs
git diff --exit-code