Skip to content

move tf action

move tf action #22

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
unit_tests:
name: unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
rev: [nightly]
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.rev }}
- name: Prepare
run: |
cd nvim/.config/nvim
make prepare
- name: Run tests
run: |
nvim --version
cd nvim/.config/nvim
make test