Skip to content

Commit

Permalink
Added more Windows variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinKennedy committed Jan 25, 2025
1 parent 3bf4643 commit 3f99b17
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,36 @@ jobs:
test:
strategy:
matrix:
# os: [ubuntu-latest, macos-latest]
# neovim: [v0.10.0, stable, nightly]
include:
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.1"
luaVersion: "luajit"
neovim: "v0.10.0"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "luajit"
neovim: "stable"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "luajit"
neovim: "nightly"

# Alternative luaVersion
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.1"
neovim: "stable"

# Alternative toolchain
- os: "windows-latest"
toolchain: "mingw" # unused, other than for display in the UI
luaVersion: "5.1"
neovim: "stable"

runs-on: ${{ matrix.os }}
name: "OS: ${{ matrix.os }} - Neovim: ${{ matrix.neovim }}"
name: "OS: ${{ matrix.os }} - Neovim: ${{ matrix.neovim }} - Lua: ${{ matrix.luaVersion }}"

steps:
- name: Checkout
Expand Down

0 comments on commit 3f99b17

Please sign in to comment.