fix(dap): not printing symbolicated call stack after another crash #432
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
unit-tests: | |
name: Unit Tests | |
strategy: | |
fail-fast: false | |
matrix: | |
nvim-version: ["stable", "nightly"] | |
os: ["macos-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tree-sitter | |
if: matrix.nvim-version == 'nightly' | |
run: | | |
brew install tree-sitter | |
- name: Install Neovim | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.nvim-version }} | |
- name: Run tests | |
run: | | |
nvim --version | |
make test |