summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 11:44:04 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 11:44:04 -0500
commitda37e20c267dd7a375145f29aa9a6cb48efacc35 (patch)
tree681da819657d556f7f7a6b1a0e40696c1f633bf3 /.github/workflows
parent0a2e3d6ac289ce20746ed2ae56e36c2cbba0f0db (diff)
downloadcmd2-git-da37e20c267dd7a375145f29aa9a6cb48efacc35.tar.gz
Fixed syntax error in `pip install` command for GitHub Actions
Also: - Refactored do_history command to extract a helper method to fix a flake8 warning about high complexity
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f8aedfb2..1e037344 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -39,7 +39,7 @@ jobs:
- name: Install python prerequisites
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
- pip install -Ur pip install flake8 nox
+ pip install -U pip flake8 nox
python setup.py develop
- name: Lint
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_LATEST