Skip to content

Commit

Permalink
fixes workflow yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwnau committed Apr 7, 2024
1 parent 15842de commit 29fdc94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/workflow-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
with:
path: ./

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9" # Adjust this to the Python version you need for your project

- name: Install Poetry
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Build
run: |
poetry install
Expand Down

0 comments on commit 29fdc94

Please sign in to comment.