Skip to content

docs: update dashboard docs #16

docs: update dashboard docs

docs: update dashboard docs #16

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
jobs:
test:
strategy:
matrix:
version: [0.10.0]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Neovim for Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
wget -q https://github.com/neovim/neovim/releases/download/v${{ matrix.version }}/nvim-linux64.tar.gz
tar -xf nvim-linux64.tar.gz
ln -sf $(pwd)/nvim-linux64/bin/nvim /usr/local/bin
- name: Install Neovim for MacOS
if: ${{ matrix.os == 'macos-latest' }}
run: |
wget -q https://github.com/neovim/neovim/releases/download/v${{ matrix.version }}/nvim-macos-x86_64.tar.gz
xattr -c ./nvim-macos-x86_64.tar.gz
tar xzvf nvim-macos-x86_64.tar.gz &> /dev/null
ln -s $(pwd)/nvim-macos-x86_64/bin/nvim /usr/local/bin/nvim
- name: Install Neovim for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
Invoke-WebRequest -OutFile nvim-win64.zip https://github.com/neovim/neovim/releases/download/v${{ matrix.version }}/nvim-win64.zip
7z x nvim-win64.zip
Add-Content $env:GITHUB_PATH ".\nvim-win64\bin\"
- name: Run tests
run: make test