We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c1aa8c commit d6e6fbfCopy full SHA for d6e6fbf
1 file changed
.github/actions/e2e-tests/action.yml
@@ -5,10 +5,15 @@ runs:
5
using: "composite"
6
7
steps:
8
- - name: Install poetry and e2e test dependencies
+ - name: Install poetry
9
shell: bash
10
run: |
11
pipx install poetry
12
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
13
+
14
+ - name: Install e2e test dependencies
15
+ shell: bash
16
+ run: |
17
cd tests/e2e-tests && poetry install
18
19
- name: Run e2e tests
0 commit comments