Skip to content

RenameProvider for variable/function renaming #1352

RenameProvider for variable/function renaming

RenameProvider for variable/function renaming #1352

Workflow file for this run

name: Vim End-to-End Tests
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
merge_group:
types: [ checks_requested ]
jobs:
vim:
name: themis
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install dotnet
uses: actions/setup-dotnet@v5
with:
cache: true
cache-dependency-path: '**/*.csproj'
- name: Install PSResources
shell: pwsh
run: tools/installPSResources.ps1
- name: Build
shell: pwsh
run: Invoke-Build Build
- name: Install Vim
id: vim
uses: rhysd/action-setup-vim@v1
with:
version: nightly
- name: Checkout vim-ps1
uses: actions/checkout@v6
with:
repository: PProvost/vim-ps1
path: vim-ps1
- name: Checkout LanguageClient-neovim
uses: actions/checkout@v6
with:
repository: autozimu/LanguageClient-neovim
path: LanguageClient-neovim
- name: Install LanguageClient-neovim
run: ./install.sh
working-directory: LanguageClient-neovim
- name: Checkout Themis
uses: actions/checkout@v6
with:
repository: thinca/vim-themis
path: vim-themis
- name: Run Themis with full CLI
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: ./vim-themis/bin/themis ./test/vim-test.vim
- name: Run Themis with simple CLI
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: ./vim-themis/bin/themis ./test/vim-simple-test.vim
- name: Start VS Code Tunnel if failed or in debug mode
if: ${{ failure() || runner.debug == '1' }}
#v0.0.2 - Pinned for security
uses: justingrote/vscode-action@5d495ef6156c20f1f9bb21031c15776d476c10c3
with:
#All these settings are optional
tunnel-name: 'pses-action-tunnel'
connection-timeout: 2
session-timeout: 30
no-cache-cli-auth: true