-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a new PR because #83 got closed and cannot be reopened. For some reason GitHub thinks it has over 250 commits. ###### Things done - [x] Tested, as applicable: - [x] Manually - [ ] Added plenary specs - [x] Updated [CHANGELOG.md](https://github.com/MrcJkb/haskell-tools.nvim/blob/master/CHANGELOG.md) (if applicable). - [x] Fits [CONTRIBUTING.md](https://github.com/MrcJkb/haskell-tools.nvim/blob/master/CONTRIBUTING.md)
- Loading branch information
Showing
4 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "Release" | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
luarocks-release: | ||
runs-on: ubuntu-latest | ||
name: LuaRocks upload | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: LuaRocks Upload | ||
uses: nvim-neorocks/[email protected] | ||
env: | ||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | ||
with: | ||
dependencies: | | ||
plenary.nvim | ||
copy_directories: | | ||
doc | ||
detailed_description: | | ||
This plugin automatically configures the haskell-language-server builtin LSP client | ||
and integrates with other Haskell tools. See the README's #features section | ||
for more info. | ||
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
local MODREV, SPECREV = 'scm', '-1' | ||
rockspec_format = '3.0' | ||
package = 'haskell-tools.nvim' | ||
version = MODREV .. SPECREV | ||
|
||
description = { | ||
summary = 'Supercharge your Haskell experience in neovim!', | ||
detailed = [[ | ||
Automatically configures the haskell-language-server neovim client | ||
and integrates with other haskell tools, such as hoogle and fast-tags. | ||
]], | ||
labels = { 'neovim', 'lsp', 'haskell', 'plugin' }, | ||
homepage = 'https://github.com/MrcJkb/haskell-tools.nvim', | ||
license = 'GPL-2.0', | ||
} | ||
|
||
dependencies = { | ||
'lua >= 5.1', | ||
'plenary.nvim', | ||
} | ||
|
||
source = { | ||
url = 'git://github.com/MrcJkb/haskell-tools.nvim', | ||
} | ||
|
||
build = { | ||
type = 'builtin', | ||
copy_directories = { | ||
'doc', | ||
}, | ||
} |