Add workaround for busted TAP no tests error #74
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: ci | |
on: | |
push: | |
tags-ignore: | |
- 'v*.*.*' | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: notomo/action-setup-nvim-lua@v1 | |
- run: make new_rockspec VERSION=0.0.0 | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
neovim: true | |
version: nightly | |
- run: make test | |
env: | |
VUSTED_NVIM: ${{ steps.vim.outputs.executable }} | |
- run: luarocks --lua-version=5.1 install vusted | |
- run: vusted --version |