Skip to content

Commit 36ef011

Browse files
committed
ci: unit tests broken, attempt fix by running setup python before install poetry
1 parent e64c9f4 commit 36ef011

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,16 @@ jobs:
5656
steps:
5757
- name: Check out repository
5858
uses: actions/checkout@v4
59-
- name: Install Poetry
60-
uses: snok/install-poetry@v1
61-
- name: Install dependencies
62-
run: poetry install --no-interaction --all-extras
6359
- name: Setup Python
6460
id: setup-python
6561
uses: actions/setup-python@v5
6662
with:
6763
python-version: ${{ matrix.python }}
6864
cache: 'poetry'
65+
- name: Install Poetry
66+
uses: snok/install-poetry@v1
67+
- name: Install dependencies
68+
run: poetry install --no-interaction --all-extras
6969
- name: run python tests
7070
run: poetry run tox -e py
7171
- name: run python test report

0 commit comments

Comments
 (0)