Skip to content

fix: use wget in github action #6

fix: use wget in github action

fix: use wget in github action #6

Workflow file for this run

name: Tests
on:
pull_request: ~
push:
branches:
- main
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
neovim_version: ["nightly", "stable", "v0.9.5"]
steps:
- uses: actions/checkout@v4
- name: Install luau-lsp
run: |
wget https://github.com/JohnnyMorganz/luau-lsp/releases/download/1.32.1/luau-lsp-linux-arm64.zip
unzip luau-lsp*.zip
- name: Run tests
uses: nvim-neorocks/nvim-busted-action@v1
with:
nvim_version: ${{ matrix.neovim_version }}