fix: impure formatting, lsp fallback not applied on load (#171) #70
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: | |
pull_request: ~ | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
neovim_version: ['nightly', 'stable'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download stylua | |
shell: bash | |
run: | | |
wget "https://github.com/JohnnyMorganz/StyLua/releases/download/v0.18.0/stylua-linux.zip" -P /home/runner/.local/bin | |
unzip /home/runner/.local/bin/stylua-linux.zip -d /home/runner/.local/bin | |
chmod +x /home/runner/.local/bin/stylua | |
- name: Run tests | |
uses: nvim-neorocks/nvim-busted-action@v1 | |
with: | |
nvim_version: ${{ matrix.neovim_version }} |