Skip to content

Unit tests infra - switching to mini.test and stylua / luacheck #7

Unit tests infra - switching to mini.test and stylua / luacheck

Unit tests infra - switching to mini.test and stylua / luacheck #7

Workflow file for this run

name: test
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.actor }}
cancel-in-progress: true
jobs:
test:
name: Run tests
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
neovim_version: ['v0.9.5', 'v0.10.0']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim_version }}
- name: Run tests
run: make prepare && make test