Skip to content

Commit

Permalink
Removed old code
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinKennedy committed Jan 24, 2025
1 parent e562276 commit 18dbbcd
Showing 1 changed file with 5 additions and 48 deletions.
53 changes: 5 additions & 48 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,55 +14,23 @@ jobs:
test:
strategy:
matrix:
# os: [ubuntu-latest, macos-latest]
# neovim: [v0.10.0, stable, nightly]
# luaVersion: [5.1, luajit]
#
# include:
# - os: "windows-latest"
# toolchain: "msvc"
# 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"

include:
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.1"
neovim: "v0.10.0"
- os: "windows-latest"
toolchain: "mingw" # unused, other than for display in the UI
luaVersion: "luajit"
neovim: "v0.10.0"

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

steps:
- name: Checkout
uses: actions/checkout@master

- name: Install Neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim }}

- name: Setup MSVC
# the 'hishamhm/gh-actions-lua' step requires msvc to build PuC Rio Lua
# versions on Windows (LuaJIT will be build using MinGW/gcc).
Expand All @@ -77,17 +45,6 @@ jobs:
- name: Install Luarocks
uses: luarocks/gh-actions-luarocks@v5

# # We need this hack until a better solution is available.
# #
# # Reference: https://github.com/nvim-neorocks/luarocks-tag-release/issues/435
# #
# - name: Expand The Template Rockspec
# uses: ColinKennedy/luarocks-rockspec-expander@v1.0.0
# with:
# input: template.rockspec
# output: nvim-best-practices-plugin-template-scm-1.rockspec
# delete_input_after: true

- name: Build Test Dependencies
run: |
luarocks test nvim-best-practices-plugin-template-scm-1.rockspec --prepare
Expand Down

0 comments on commit 18dbbcd

Please sign in to comment.