diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:27:06 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:27:06 -0500 |
commit | adaa977a895a8f83106d9c6280f698473f396496 (patch) | |
tree | a2308931a7911ccd6bd092aaa35b8ba042a32b52 | |
parent | 34fddf9f5c07ea10aa2fe7e1eeac6fe8967a8fc5 (diff) | |
download | cmd2-git-adaa977a895a8f83106d9c6280f698473f396496.tar.gz |
Finish removing use of caching in GitHub Actions YAML config
-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 ; |