Skip to content

Commit

Permalink
Fixed missing poetry install step
Browse files Browse the repository at this point in the history
  • Loading branch information
jtc42 committed Jun 15, 2020
1 parent 8e2815c commit c73d0a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
poetry config virtualenvs.in-project false
poetry config virtualenvs.path ~/.virtualenvs
- name: Install Dependencies
run: poetry install

- name: Code Quality
run: poetry run black . --check
continue-on-error: true
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
poetry config virtualenvs.in-project false
poetry config virtualenvs.path ~/.virtualenvs
- name: Install Dependencies
run: poetry install

- name: Code Quality
run: poetry run black . --check
continue-on-error: true
Expand Down

0 comments on commit c73d0a4

Please sign in to comment.