Skip to content

trying something else #40

trying something else

trying something else #40

Workflow file for this run

name: Tests
on: [push]
jobs:
unit_tests:
name: unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12]
rev: [v0.10.0]
include:
- os: ubuntu-22.04
install-cargo: curl -sSf https://sh.rustup.rs | sh -s -- -y
install-gg: cargo install grip-grab
install-sed: sudo apt-get install -y sed
- os: macos-12
install-cargo: curl -sSf https://sh.rustup.rs | sh -s -- -y
install-gg: cargo install grip-grab
install-sed: brew install gnu-sed
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.rev }}
- name: Prepare
run: |
${{ matrix.install-cargo }}
${{ matrix.install-gg }}
gg --version
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ../plenary.nvim
- name: Run tests
run: |
nvim --version
make test