We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3396886 commit 0f87fd2Copy full SHA for 0f87fd2
.github/workflows/github_actions_tests.yml
@@ -42,11 +42,11 @@ jobs:
42
echo "BASE_URL_FE=${BASE_URL_FE}" > .env
43
echo "BASE_URL_API=${BASE_URL_API}" > .env
44
45
- - name: Install Allure Commandline
46
- uses: simple-elf/allure-commandline@v2
47
- with:
48
- version: 2.27.0
49
- allure_dist: allure
+ - name: Install Allure CLI
+ run: |
+ sudo apt-add-repository ppa:qameta/allure -y
+ sudo apt-get update
+ sudo apt-get install allure -y
50
51
- name: Run tests(UI & API) with Pytest
52
run: |
0 commit comments