ci: add GitHub workflows and issue templates
Problem: need CI for tests, quality checks, luarocks publishing, and structured issue/discussion templates. Solution: add test, quality, and luarocks workflows mirroring diffs.nvim conventions. Add bug report, feature request, and Q&A templates.
This commit is contained in:
parent
b617ee284e
commit
be31f95551
7 changed files with 247 additions and 0 deletions
22
.github/workflows/test.yaml
vendored
Normal file
22
.github/workflows/test.yaml
vendored
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue