Skip to content

Commit b895f70

Browse files
committed
fix: Correct YAML indentation in CI workflow
- Fix missing space in '- name: Install dependencies' step indentation - Add proper spacing between Install Allure CLI and Generate test documentation steps - Validate YAML syntax to prevent workflow errors - Ensure proper GitHub Actions workflow execution
1 parent e0ba3f8 commit b895f70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ jobs:
172172
uses: actions/setup-python@v5
173173
with:
174174
python-version: "3.11"
175-
- name: Install dependencies
175+
176+
- name: Install dependencies
176177
run: |
177178
python -m pip install --upgrade pip
178179
pip install -r requirements.txt
179180
pip install allure-pytest
180-
181-
- name: Install Allure CLI
181+
- name: Install Allure CLI
182182
run: |
183183
sudo apt-get update
184184
sudo apt-get install -y default-jre

0 commit comments

Comments
 (0)