Skip to content

Commit

Permalink
fix(ci): add missing poetry install step
Browse files Browse the repository at this point in the history
  • Loading branch information
alexismanuel committed Jul 3, 2024
1 parent 39edf26 commit 98893a6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand All @@ -13,9 +12,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH='$HOME/.local/bin:$PATH'" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install
- name: Test with pytest
run: |
Expand Down

0 comments on commit 98893a6

Please sign in to comment.