mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
on:
|
|
workflow_call:
|
|
inputs:
|
|
type:
|
|
type: string
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
check_compilation:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
nvim_tag: [nightly]
|
|
name: ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
NVIM: ${{ matrix.os == 'windows-latest' && 'nvim-win64\\bin\\nvim.exe' || 'nvim' }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: tree-sitter/setup-action/cli@v2
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
- name: Install and prepare Neovim
|
|
env:
|
|
NVIM_TAG: ${{ matrix.nvim_tag }}
|
|
run: |
|
|
bash ./scripts/ci-install.sh
|
|
|
|
- if: inputs.type == 'build'
|
|
name: Compile parsers
|
|
run: $NVIM -l ./scripts/install-parsers.lua --max-jobs=10
|
|
|
|
- if: inputs.type == 'generate'
|
|
name: Generate and compile parsers
|
|
run: $NVIM -l ./scripts/install-parsers.lua --generate --max-jobs=2
|
|
|
|
- name: Check parsers
|
|
run: $NVIM -l ./scripts/check-parsers.lua
|
|
|
|
- name: Check queries (nvim)
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
run: $NVIM -l ./scripts/check-queries.lua
|
|
|
|
- name: Check queries (tsqueryls)
|
|
if: ${{ matrix.os != 'windows-latest' }}
|
|
run: make checkquery
|
|
|
|
- name: Run highlight tests
|
|
if: ${{ matrix.os != 'windows-latest' }}
|
|
run: make tests TESTS=query NVIM_BIN=$NVIM
|
|
|
|
- name: Run indents tests
|
|
if: ${{ matrix.os != 'windows-latest' }}
|
|
run: make tests TESTS=indent NVIM_BIN=$NVIM
|