Skip to content

Automatically Select Xcode Scheme Based on File Targets #426

Automatically Select Xcode Scheme Based on File Targets

Automatically Select Xcode Scheme Based on File Targets #426

Workflow file for this run

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