Skip to content

Commit 4737561

Browse files
AntoniaSzecsiAntoniaSzecsi
authored andcommitted
Update test-on-push-and-pr.yml
Modified workflow file to include installation of poetry to solve the failing of build GitHub action
1 parent 49af36a commit 4737561

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/test-on-push-and-pr.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.12'
20+
21+
- name: Install Poetry
22+
run: |
23+
curl -sSL https://install.python-poetry.org | python3 -
24+
echo "$HOME/.local/bin" >> $GITHUB_PATH
25+
1526
- name: Run 'pr' target
1627
run: make pr
1728

@@ -45,4 +56,4 @@ jobs:
4556
steps:
4657
- uses: actions/checkout@v4
4758
- name: Run ubuntu integration tests
48-
run: DISTRO=ubuntu make test-integ
59+
run: DISTRO=ubuntu make test-integ

0 commit comments

Comments
 (0)