Skip to content

Commit

Permalink
updated ci with poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
broomva committed Jan 26, 2024
1 parent 74cb09e commit d413645
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ jobs:
python -m pip install --upgrade pip
pip install pytest
pip install black pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install poetry
poetry install
- name: Modify Files using Current Branch Name
run: |
if [[ ${{ github.ref }} == 'refs/heads/main' ]]; then
Expand Down Expand Up @@ -105,4 +106,6 @@ jobs:
# release-type: node
# package-name: release-please-action

# pylint --disable=all --enable=unused-import $(git ls-files '*.py')
# pylint --disable=all --enable=unused-import $(git ls-files '*.py')

# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

0 comments on commit d413645

Please sign in to comment.