Skip to content

Commit 1f34035

Browse files
committed
fix: Correct YAML indentation issues in workflow files (partial fix)
1 parent e7dce7e commit 1f34035

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/enhanced-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
runs-on: ubuntu-latest
182182
needs: preflight
183183
if: needs.preflight.outputs.has_changes == 'true'
184-
steps:
184+
steps:
185185
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
186186
- name: Install Rust
187187
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
@@ -224,7 +224,7 @@ jobs:
224224
name: Build
225225
runs-on: ubuntu-latest
226226
needs: quality-gate
227-
steps:
227+
steps:
228228
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
229229
- name: Install Rust
230230
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6

.github/workflows/optimized-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ preflight:
9090
name: Quality Gate
9191
runs-on: ubuntu-latest
9292
steps:
93-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
93+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
9494

95-
- name: Install sccache
96-
uses: mozilla-actions/sccache-action@2e7f9ec7921547d4b46598398ca573513895d0bd
95+
- name: Install sccache
96+
uses: mozilla-actions/sccache-action@2e7f9ec7921547d4b46598398ca573513895d0bd
9797

98-
- name: Install Rust
99-
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
98+
- name: Install Rust
99+
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
100100
with:
101101
components: rustfmt, clippy
102102

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
path: target
5252
key: ${{ runner.os }}-bench-target-${{ hashFiles('**/Cargo.lock') }}
5353

54-
- name: Run criterion benchmarks
55-
run: |
54+
- name: Run criterion benchmarks
55+
run: |
5656
echo "Checking for benchmark files..."
5757
find . -name "*.rs" -path "*/benches/*" -ls || echo "No benchmark files found in benches/"
5858
# Check if we have criterion benchmarks defined in Cargo.toml

.github/workflows/version-sync.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
with:
6161
fetch-depth: 0
6262

63-
- name: Analyze version state
64-
id: check
65-
run: |
63+
- name: Analyze version state
64+
id: check
65+
run: |
6666
echo "## 🔍 Version Analysis Report" >> $GITHUB_STEP_SUMMARY
6767
echo "" >> $GITHUB_STEP_SUMMARY
6868

0 commit comments

Comments
 (0)