Skip to content

Commit

Permalink
ci: install poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Jun 6, 2023
1 parent b4ab738 commit bb0e2ba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ jobs:
- name: Checkout Code Repository
uses: actions/checkout@v3

- name: Install poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -177,7 +180,7 @@ jobs:
run: |
# Note that you have to activate the virtualenv in every step
# because GitHub actions doesn't preserve the environment
source ~/venv/bin/activate
source $POETRY_HOME/bin/activate
# Run tests
invoke test
Expand All @@ -196,6 +199,9 @@ jobs:
- name: Checkout Code Repository
uses: actions/checkout@v3

- name: Install poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit bb0e2ba

Please sign in to comment.