nvim-utils 0.1.12

Utilities for writing neovim plugins in rust
Documentation
name: Neovim Tests

on:
  push:
  pull_request:
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always

jobs:
  nvim_tests:
    name: Run Neovim Tests
    runs-on: ubuntu-latest
    strategy:
      matrix:
        toolchain:
          - stable
          - nightly
    steps:
    - name: Setup Rust
      run:  rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
    - name: Setup Nextest
      run:  curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
    - name: Setup Neovim
      uses: MunifTanjim/setup-neovim-action@v1.1.0
    - name: Checkout
      uses: actions/checkout@v3
    - name: Build
      run:  cargo build --verbose
    - name: Run tests
      run:  cargo nextest run -E 'test(nvim)' --run-ignored all -P ci --verbose --status-level all --all-features