Skip to content

Commit

Permalink
Merge pull request #13 from yriveiro/fix-docgen
Browse files Browse the repository at this point in the history
fix: docgen workflow action
  • Loading branch information
yriveiro authored Jan 7, 2024
2 parents 20585ae + 9679f72 commit 22f3548
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docgen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
- os: ubuntu-latest
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
steps:
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Checkout Code
uses: actions/checkout@v4
- name: Todays Data
run: date +%F > todays-date
- name: Restore cache for today's nightly.
uses: actions/cache@v3
with:
Expand All @@ -35,7 +37,7 @@ jobs:
git clone --depth 1 https://github.com/mfussenegger/nvim-dap ~/.local/share/nvim/site/pack/vendor/start/nvim-dap
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start
- name: Tree Sitter Cli
- uses: actions-rs/[email protected]
uses: actions-rs/[email protected]
with:
crate: tree-sitter-cli
version: latest
Expand Down
8 changes: 4 additions & 4 deletions doc/dap-go.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
================================================================================
*dap-go.nvim*
NVIM *dap-go.nvim*

dap-go.nvim is an extension for `nvim-dap` plugin that configures the usage of
Golang debugging over Delve.
Expand Down Expand Up @@ -70,7 +70,7 @@ dapgo.reload({options}) *dapgo.reload()*


================================================================================
*dap-go.config*
CONFIG *dap-go.config*

Config holds all the configuration to operate the extension.

Expand Down Expand Up @@ -125,7 +125,7 @@ config.setup({options}) *config.setup()*


================================================================================
*dap-go.env*
ENV *dap-go.env*

This class wraps the `vim.fn.environ` with some functionalities and
validations.
Expand All @@ -152,7 +152,7 @@ env.dump() *env.dump()*


================================================================================
*dap-go.util*
UTIL *dap-go.util*

This class provides common functions used in dap-go extension.

Expand Down

0 comments on commit 22f3548

Please sign in to comment.