Added unittest + basic python and lua unittests (#174)
--------- Co-authored-by: Danymat <d.danymat@gmail.com>
This commit is contained in:
27
.github/workflows/test.yml
vendored
Normal file
27
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
on: [push, pull_request]
|
||||
name: test
|
||||
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
neovim: [v0.10.0, nightly]
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: "OS: ${{ matrix.os }} - Neovim: ${{ matrix.neovim }}"
|
||||
steps:
|
||||
- name: Checkout neogen
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: danymat/neogen
|
||||
path: neogen
|
||||
- uses: rhysd/action-setup-vim@v1
|
||||
with:
|
||||
neovim: true
|
||||
version: ${{ matrix.neovim }}
|
||||
- name: Run tests
|
||||
working-directory: ./neogen
|
||||
run: |
|
||||
nvim --version
|
||||
make test
|
||||
Reference in New Issue
Block a user