feat(test): testing infrastructure

This commit is contained in:
Barrett Ruth 2026-02-01 23:09:05 -05:00
parent d974567a8d
commit ae1df3e7a8
9 changed files with 668 additions and 3 deletions

22
.github/workflows/test.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
name: test
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nvim: [stable, nightly]
name: Test (Neovim ${{ matrix.nvim }})
steps:
- uses: actions/checkout@v4
- uses: nvim-neorocks/nvim-busted-action@v1
with:
nvim-version: ${{ matrix.nvim }}