Skip to content

Commit

Permalink
fix: added poetry dependency installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Aug 15, 2023
1 parent ca88761 commit 4104d72
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/svc-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,11 @@ jobs:
python: ${{matrix.python-version}}
poetry: 1.5.1

- name: Pip install
run: pip install --upgrade -r requirements.txt

- name: Install dependencies
run: |
if test -f ./pyproject.toml; then poetry install; fi
if test -f ./requirements.txt; then pip install --upgrade -r requirements.txt; fi
if test -f ./makefile; then make install; fi
#--------------------------------------------------#
# Tests: Go #
Expand Down

0 comments on commit 4104d72

Please sign in to comment.