diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/doc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03f7fd4a..8788a530 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,8 +34,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites - # Only install dependencies when there is a cache miss - if: steps.cache-deps.outputs.cache-hit != 'true' run: pip install -U --user pip setuptools setuptools-scm nox - name: Run tests and post coverage results env: diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 8f982683..bc7bb14d 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -34,8 +34,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites - # Only install dependencies when there is a cache miss - if: steps.cache-deps.outputs.cache-hit != 'true' run: pip install -U --user pip setuptools setuptools-scm nox - name: Sphinx documentation build run: python -m nox --non-interactive --session docs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 328df22f..13c57507 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,8 +34,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites - # Only install dependencies when there is a cache miss - if: steps.cache-deps.outputs.cache-hit != 'true' run: pip install -U --user pip setuptools setuptools-scm flake8 - name: Lint run: python -m flake8 . --count --ignore=E252,W503 --max-complexity=26 --max-line-length=127 --show-source --statistics ; |