From 8a8af3bcbfe1b14d295bd385a40ada9c051e477b Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 8 Dec 2021 14:29:14 -0800 Subject: [PATCH] update Signed-off-by: Jess Frazelle --- .github/workflows/build-test.yml | 6 ++++-- .github/workflows/make-release.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b9cc50704..5b1195e16 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -25,10 +25,12 @@ jobs: python-version: ${{ matrix.python-version }} # Installation instructions are from: https://python-poetry.org/docs/ - - name: Install poetry + - name: Install poetry and other deps shell: bash run: | - pip install poetry + pip install \ + poetry \ + flake8 - name: Build shell: bash diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index de5a7b3d5..f9078d0b2 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -16,7 +16,8 @@ jobs: - name: Install poetry shell: bash run: | - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - + pip install poetry + - name: Do the release shell: bash run: |