-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rónán Carrigan
committed
Dec 20, 2023
1 parent
b6448cb
commit 7a250ab
Showing
32 changed files
with
7,235 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,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: rcarriga |
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,103 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
labels: '' | ||
assignees: rcarriga | ||
|
||
--- | ||
|
||
**NeoVim Version** | ||
Output of `nvim --version` | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Please provide a minimal `init.lua` to reproduce which can be run as the following: | ||
```sh | ||
nvim --clean -u minimal.lua | ||
``` | ||
|
||
You can edit the following example file to include your adapters and other required setup. | ||
```lua | ||
-- ignore default config and plugins | ||
vim.opt.runtimepath:remove(vim.fn.expand("~/.config/nvim")) | ||
vim.opt.packpath:remove(vim.fn.expand("~/.local/share/nvim/site")) | ||
vim.opt.termguicolors = true | ||
|
||
-- append test directory | ||
local test_dir = "/tmp/nvim-config" | ||
vim.opt.runtimepath:append(vim.fn.expand(test_dir)) | ||
vim.opt.packpath:append(vim.fn.expand(test_dir)) | ||
|
||
-- install packer | ||
local install_path = test_dir .. "/pack/packer/start/packer.nvim" | ||
local install_plugins = false | ||
|
||
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | ||
vim.cmd("!git clone https://github.com/wbthomason/packer.nvim " .. install_path) | ||
vim.cmd("packadd packer.nvim") | ||
install_plugins = true | ||
end | ||
|
||
local packer = require("packer") | ||
|
||
packer.init({ | ||
package_root = test_dir .. "/pack", | ||
compile_path = test_dir .. "/plugin/packer_compiled.lua", | ||
}) | ||
|
||
packer.startup(function(use) | ||
use("wbthomason/packer.nvim") | ||
|
||
use({ | ||
"nvim-neotest/neotest", | ||
requires = { | ||
"vim-test/vim-test", | ||
"nvim-lua/plenary.nvim", | ||
"nvim-treesitter/nvim-treesitter", | ||
"antoinemadec/FixCursorHold.nvim", | ||
}, | ||
config = function() | ||
require("neotest").setup({ | ||
adapters = {}, | ||
}) | ||
end, | ||
}) | ||
|
||
if install_plugins then | ||
packer.sync() | ||
end | ||
end) | ||
|
||
vim.cmd([[ | ||
command! NeotestSummary lua require("neotest").summary.toggle() | ||
command! NeotestFile lua require("neotest").run.run(vim.fn.expand("%")) | ||
command! Neotest lua require("neotest").run.run(vim.fn.getcwd()) | ||
command! NeotestNearest lua require("neotest").run.run() | ||
command! NeotestDebug lua require("neotest").run.run({ strategy = "dap" }) | ||
command! NeotestAttach lua require("neotest").run.attach() | ||
command! NeotestOutput lua require("neotest").output.open() | ||
]]) | ||
``` | ||
|
||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
Please provide example test files to reproduce. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Logs** | ||
1. Wipe the `neotest.log` file in `stdpath("log")` or `stdpath("data")`. | ||
2. Set `log_level = vim.log.levels.DEBUG` in your neotest setup config. | ||
3. Reproduce the issue. | ||
4. Provide the new logs. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,55 @@ | ||
# Taken from telescope | ||
name: Generate docs | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- master | ||
pull_request: ~ | ||
|
||
jobs: | ||
build-sources: | ||
name: Generate docs | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-20.04 | ||
url: https://github.com/neovim/neovim/releases/download/v0.5.1/nvim-linux64.tar.gz | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: date +%F > todays-date | ||
- name: Restore cache for today's nightly. | ||
uses: actions/cache@v2 | ||
with: | ||
path: _neovim | ||
key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }} | ||
|
||
- name: Prepare | ||
run: | | ||
test -d _neovim || { | ||
mkdir -p _neovim | ||
curl -sL ${{ matrix.url }} | tar xzf - --strip-components=1 -C "${PWD}/_neovim" | ||
} | ||
mkdir -p ~/.local/share/nvim/site/pack/vendor/start | ||
git clone --depth 1 https://github.com/echasnovski/mini.nvim ~/.local/share/nvim/site/pack/vendor/start/mini.nvim | ||
- name: Generating docs | ||
run: | | ||
export PATH="${PWD}/_neovim/bin:${PATH}" | ||
export VIM="${PWD}/_neovim/share/nvim/runtime" | ||
nvim --version | ||
./scripts/docgen | ||
- name: Update documentation | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMMIT_MSG: | | ||
docs: update doc/neotest.txt | ||
skip-checks: true | ||
run: | | ||
git config user.email "actions@github" | ||
git config user.name "Github Actions" | ||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | ||
git add doc/ | ||
# Only commit and push if we have changes | ||
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:${GITHUB_REF}) |
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,16 @@ | ||
name: Add issues to tracking project | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/nvim-neotest/projects/1 | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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,29 @@ | ||
--- | ||
on: | ||
release: | ||
types: | ||
- created | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: # Allow manual trigger | ||
pull_request: # Tests the luarocks installation without releasing on PR | ||
|
||
jobs: | ||
luarocks-upload: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get Version | ||
# tags do not trigger the workflow when they are created by other workflows or releases | ||
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV | ||
- name: LuaRocks Upload | ||
uses: nvim-neorocks/luarocks-tag-release@v5 | ||
env: | ||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | ||
with: | ||
version: ${{ env.LUAROCKS_VERSION }} | ||
dependencies: | | ||
plenary.nvim |
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,77 @@ | ||
name: neotest Workflow | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: ~ | ||
jobs: | ||
style: | ||
name: style | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: JohnnyMorganz/stylua-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version: latest | ||
args: --check lua/ tests/ | ||
|
||
tests: | ||
name: tests | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-22.04 | ||
rev: nightly/nvim-linux64.tar.gz | ||
- os: ubuntu-22.04 | ||
rev: v0.9.1/nvim-linux64.tar.gz | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: date +%F > todays-date | ||
- name: Restore cache for today's nightly. | ||
uses: actions/cache@v3 | ||
with: | ||
path: _neovim | ||
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }} | ||
|
||
- name: Prepare dependencies | ||
run: | | ||
test -d _neovim || { | ||
mkdir -p _neovim | ||
curl -sL "https://github.com/neovim/neovim/releases/download/${{ matrix.rev }}" | tar xzf - --strip-components=1 -C "${PWD}/_neovim" | ||
} | ||
mkdir -p ~/.local/share/nvim/site/pack/vendor/start | ||
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim | ||
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start | ||
export PATH="${PWD}/_neovim/bin:${PATH}" | ||
export VIM="${PWD}/_neovim/share/nvim/runtime" | ||
- name: Run tests | ||
run: | | ||
export PATH="${PWD}/_neovim/bin:${PATH}" | ||
export VIM="${PWD}/_neovim/share/nvim/runtime" | ||
nvim --version | ||
./scripts/test | ||
release: | ||
name: release | ||
if: ${{ github.ref == 'refs/heads/master' }} | ||
needs: | ||
- style | ||
- tests | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 18 | ||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: npx semantic-release |
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,4 @@ | ||
neovim/ | ||
plenary.nvim/ | ||
doc/tags | ||
Session.vim |
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,12 @@ | ||
{ | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"successComment": false | ||
} | ||
] | ||
] | ||
} |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Rónán Carrigan | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.