Skip to content

Commit 31ae011

Browse files
committed
fix: Continued YAML indentation improvements - systematic progress
1 parent 0f44ace commit 31ae011

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/enhanced-ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -379,12 +379,12 @@ jobs:
379379
- name: Test Storage crate
380380
run: cargo nextest run -p code_guardian_storage --all-features
381381

382-
# Enhanced coverage with thresholds
383-
coverage:
384-
name: Coverage Analysis
385-
runs-on: ubuntu-latest
386-
needs: [test-cli, test-core, test-output, test-storage]
387-
if: always() && (needs.test-cli.result == 'success' || needs.test-core.result == 'success' || needs.test-output.result == 'success' || needs.test-storage.result == 'success')
382+
# Enhanced coverage with thresholds
383+
coverage:
384+
name: Coverage Analysis
385+
runs-on: ubuntu-latest
386+
needs: [test-cli, test-core, test-output, test-storage]
387+
if: always() && (needs.test-cli.result == 'success' || needs.test-core.result == 'success' || needs.test-output.result == 'success' || needs.test-storage.result == 'success')
388388
steps:
389389
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
390390
- name: Install Rust

.github/workflows/optimized-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ jobs:
177177
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
178178

179179
- name: Install cargo-nextest
180-
uses: taiki-e/install-action@fa0639a7132933c4081764bded317e92c04e5c07
181-
with:
182-
tool: cargo-nextest
180+
uses: taiki-e/install-action@fa0639a7132933c4081764bded317e92c04e5c07
181+
with:
182+
tool: cargo-nextest
183183

184184
- name: Cache target
185185
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830

.github/workflows/version-sync.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ jobs:
244244
manifest_version=$(jq -r '."."' .github/.release-please-manifest.json)
245245
echo "| release-please | $manifest_version |" >> $GITHUB_STEP_SUMMARY
246246
247-
- name: Update CHANGELOG with version sync
248-
if: steps.sync.outputs.files_updated == 'true'
249-
run: |
247+
- name: Update CHANGELOG with version sync
248+
if: steps.sync.outputs.files_updated == 'true'
249+
run: |
250250
TARGET_VERSION="${{ needs.analyze-versions.outputs.target_version }}"
251251
252252
# Check if there's already an entry for this version
@@ -277,9 +277,9 @@ jobs:
277277
echo "ℹ️ CHANGELOG entry for $TARGET_VERSION already exists"
278278
fi
279279
280-
- name: Commit and push changes
281-
if: steps.sync.outputs.files_updated == 'true'
282-
run: |
280+
- name: Commit and push changes
281+
if: steps.sync.outputs.files_updated == 'true'
282+
run: |
283283
TARGET_VERSION="${{ needs.analyze-versions.outputs.target_version }}"
284284
SYNC_STRATEGY="${{ needs.analyze-versions.outputs.sync_strategy }}"
285285

0 commit comments

Comments
 (0)