From adaa977a895a8f83106d9c6280f698473f396496 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sat, 30 Jan 2021 19:27:06 -0500 Subject: Finish removing use of caching in GitHub Actions YAML config --- .github/workflows/ci.yml | 2 -- .github/workflows/doc.yml | 2 -- .github/workflows/lint.yml | 2 -- 3 files changed, 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 ; -- cgit v1.2.1