ci: remove busted.yml #5
Workflow file for this run
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: | |
push: | |
branches-ignore: [ sync, stable ] | |
paths: [ 'colors/**', 'lua/**', 'tests/**' ] | |
pull_request: | |
branches-ignore: [ sync, stable ] | |
paths: [ 'colors/**', 'lua/**', 'tests/**' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.actor }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Run tests | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
neovim_version: ['v0.10.2', 'nightly'] | |
include: | |
- os: macos-latest | |
neovim_version: v0.10.1 | |
- os: windows-latest | |
neovim_version: v0.10.1 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Lua | |
uses: leso-kn/gh-actions-lua@master | |
with: | |
luaVersion: "5.1" | |
- uses: actions/checkout@v4 | |
- name: Setup neovim | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.neovim_version }} | |
- name: Setup LuaRocks | |
uses: hishamhm/gh-actions-luarocks@master | |
run: | | |
luarocks build --local --lua-version=5.1 | |
shell: bash | |
- name: Run tests | |
run: make test |