Skip to content

Commit 9ac2e48

Browse files
committed
Fix install order of tools in CI
1 parent 64e3d0a commit 9ac2e48

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- name: Install Poetry
16-
run: |
17-
curl -sSL https://install.python-poetry.org | python3 -
18-
echo "$HOME/.local/bin" >> $GITHUB_PATH
19-
2015
- name: Setup Bats and bats libs
2116
uses: bats-core/bats-action@3.0.0
2217

@@ -27,6 +22,11 @@ jobs:
2722
uses: actions/setup-python@v5
2823
with:
2924
python-version: '3.x'
30-
25+
26+
- name: Install Poetry
27+
run: |
28+
curl -sSL https://install.python-poetry.org | python3 -
29+
echo "$HOME/.local/bin" >> $GITHUB_PATH
30+
3131
- name: CI Python
3232
run: make ci-py

0 commit comments

Comments
 (0)