Skip to content

Commit adaa977

Browse files
committed
Finish removing use of caching in GitHub Actions YAML config
1 parent 34fddf9 commit adaa977

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install python prerequisites
37-
# Only install dependencies when there is a cache miss
38-
if: steps.cache-deps.outputs.cache-hit != 'true'
3937
run: pip install -U --user pip setuptools setuptools-scm nox
4038
- name: Run tests and post coverage results
4139
env:

.github/workflows/doc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install python prerequisites
37-
# Only install dependencies when there is a cache miss
38-
if: steps.cache-deps.outputs.cache-hit != 'true'
3937
run: pip install -U --user pip setuptools setuptools-scm nox
4038
- name: Sphinx documentation build
4139
run: python -m nox --non-interactive --session docs

.github/workflows/lint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install python prerequisites
37-
# Only install dependencies when there is a cache miss
38-
if: steps.cache-deps.outputs.cache-hit != 'true'
3937
run: pip install -U --user pip setuptools setuptools-scm flake8
4038
- name: Lint
4139
run: python -m flake8 . --count --ignore=E252,W503 --max-complexity=26 --max-line-length=127 --show-source --statistics ;

0 commit comments

Comments
 (0)