Skip to content

Fuzzy matching #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest wn vim-client
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt

- name: Lint with pylint
run: |
Expand Down Expand Up @@ -76,15 +76,15 @@ jobs:
uses: actions/cache@v3
with:
path: |
${{ steps.pip-cache-vim.outputs.dir }}
key: ${{ runner.os }}-pip-vim-${{ hashFiles('**/requirements.txt') }}
${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-vim-

${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-

- name: Install vint
run: |
python -m pip install --upgrade pip setuptools
pip install vim-vint==0.3.21
pip install -r requirements.txt

- name: Lint Vim script
run: |
Expand Down
Loading
Loading