diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 11:44:04 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 11:44:04 -0500 |
commit | da37e20c267dd7a375145f29aa9a6cb48efacc35 (patch) | |
tree | 681da819657d556f7f7a6b1a0e40696c1f633bf3 /.github | |
parent | 0a2e3d6ac289ce20746ed2ae56e36c2cbba0f0db (diff) | |
download | cmd2-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')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
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 |