-
Notifications
You must be signed in to change notification settings - Fork 15
fix: replace poetry installation with bash for github actions #903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,9 +31,10 @@ jobs: | |
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Install poetry | ||
| uses: abatilo/actions-poetry@v3 | ||
| with: | ||
| poetry-version: ${{ matrix.poetry-version }} | ||
| shell: bash | ||
| run: | | ||
| pipx install poetry==${{matrix.poetry-version}} | ||
| poetry config virtualenvs.prefer-active-python true | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not using the current python version installed causing all tests to run on python 3.12
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we add this comment directly to the workflow file for context |
||
| - name: Install dependencies | ||
| run: poetry install | ||
| - name: Run mypy - static type checking | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why Use |?