mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-04-14 03:33:51 +00:00
25 lines
470 B
YAML
25 lines
470 B
YAML
---
|
|
on: [push, pull_request]
|
|
name: default
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
nvim-versions: ["stable", "nightly"]
|
|
name: test
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: rhysd/action-setup-vim@v1
|
|
with:
|
|
neovim: true
|
|
version: ${{ matrix.nvim-versions }}
|
|
|
|
- name: run tests
|
|
run: make test
|
|
env:
|
|
PLENARY_DIR: vendor/plenary.nvim
|