diff options
Diffstat (limited to '.github/workflows/setup-project.yml')
| -rw-r--r-- | .github/workflows/setup-project.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/setup-project.yml b/.github/workflows/setup-project.yml new file mode 100644 index 00000000..ce7972df --- /dev/null +++ b/.github/workflows/setup-project.yml @@ -0,0 +1,18 @@ +name: Setup project + +on: + workflow_call: + +jobs: + setup-project: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: rhysd/action-setup-vim@v1 + with: + neovim: true + version: v0.5.1 + - name: Clone latest lspconfig + run: | + mkdir -p ~/.local/share/nvim/site/pack/packer/start + git clone --depth 1 https://github.com/neovim/nvim-lspconfig ~/.local/share/nvim/site/pack/packer/start/nvim-lspconfig |
