docs: add local
prefix for locals group to match upstream
#747
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: Tests | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- 'master' | |
# Cancel any in-progress CI runs for a PR if it is updated | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
check_compilation: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
cc: [gcc] | |
nvim_tag: [stable, nightly] | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
env: | |
CC: ${{ matrix.cc }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Install tree-sitter CLI | |
run: npm i -g tree-sitter-cli | |
- name: Test Dependencies | |
run: | | |
mkdir -p ~/.local/share/nvim/site/pack/ci/opt | |
cd ~/.local/share/nvim/site/pack/ci/opt | |
git clone https://github.com/nvim-lua/plenary.nvim | |
git clone https://github.com/nvim-treesitter/nvim-treesitter | |
- name: Install and prepare Neovim | |
env: | |
NVIM_TAG: ${{ matrix.nvim_tag }} | |
run: | | |
bash ./scripts/ci-install-${{ matrix.os }}.sh | |
- name: Setup Parsers Cache | |
id: parsers-cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./parser/ | |
~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/ | |
key: ${{ matrix.os }}-${{ matrix.cc }}-parsers-v1-${{ hashFiles('./lockfile.json', './lua/nvim-treesitter/parsers.lua', './lua/nvim-treesitter/install.lua', './lua/nvim-treesitter/shell_selectors.lua') }} | |
- name: Compile parsers Unix like | |
if: ${{ matrix.os != 'windows-latest' && steps.parsers-cache.outputs.cache-hit != 'true' }} | |
run: | | |
nvim --headless -c "TSInstallSync all" -c "q" | |
- name: Tests | |
run: PATH=/usr/local/bin:$PATH ./scripts/run_tests.sh |