1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 08:00:04 +08:00
SpaceVim/bundle/nvim-lspconfig/.github/workflows/codespell.yml

22 lines
638 B
YAML
Raw Normal View History

2021-10-05 15:13:10 +08:00
name: codespell
on: [pull_request]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
fetch-depth: 0
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codespell
- name: Use codespell
run: |
codespell --quiet-level=2 --check-hidden --skip=CONFIG.md --ignore-words=.codespellignorewords || exit