Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use consistent Python version
Browse files Browse the repository at this point in the history
edgarrmondragon committed Jan 28, 2025
1 parent b30d17a commit f2ebadf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ jobs:
- uses: isbang/compose-action@v1.5.1

- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
@@ -54,11 +55,11 @@ jobs:
pip --version
- name: Install Poetry
run: |
pipx install poetry
pipx install --python ${{ steps.setup-python.outputs.python-path }} poetry
poetry --version
- name: Install Tox
run: |
pipx install tox
pipx install --python ${{ steps.setup-python.outputs.python-path }} tox
tox --version
- name: Install dependencies
run: |

0 comments on commit f2ebadf

Please sign in to comment.