From e1faf0ebb3e1d157d458ed6e32d306d71f655883 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Thu, 10 Feb 2022 23:23:35 +0100 Subject: ci: simplify codespell workflow (#1706) --- .github/workflows/codespell.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.2.3-70-g09d2