Skip to content

Support parsing stack traces from the clipboard, nested exceptions, a… #24

Support parsing stack traces from the clipboard, nested exceptions, a…

Support parsing stack traces from the clipboard, nested exceptions, a… #24

Workflow file for this run

name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unit-tests:
name: Unit tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
neovim: [true]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Vim or Neovim
uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: ${{ matrix.neovim }}
- name: Run unit tests
run: make test