diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-02-10 23:23:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-10 14:23:35 -0800 |
| commit | e1faf0ebb3e1d157d458ed6e32d306d71f655883 (patch) | |
| tree | aebf771b0d0248eba7cc2e28260a94483f02de38 /.github/workflows | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar.gz nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar.bz2 nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar.lz nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar.xz nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.tar.zst nvim-lspconfig-e1faf0ebb3e1d157d458ed6e32d306d71f655883.zip | |
ci: simplify codespell workflow (#1706)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/codespell.yml | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index e2876384..927a7d9e 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -5,17 +5,7 @@ jobs: 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: Install codespell + run: pip install codespell - name: Use codespell - run: | - codespell --quiet-level=2 --check-hidden --skip=./doc/server_configurations.md,./doc/server_configurations.txt --ignore-words=.codespellignorewords || exit + run: codespell --quiet-level=2 --check-hidden --skip=./doc/server_configurations.md,./doc/server_configurations.txt --ignore-words=.codespellignorewords |
