Skip to content

Commit 26d993d

Browse files
committed
fix: exclude cortex-gui from CI checks (requires frontend build)
The GUI crate requires the frontend to be built first (../dist). It will be built separately in the release workflow with proper setup.
1 parent 7007f55 commit 26d993d

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
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
components: clippy
3636
- uses: Swatinem/rust-cache@v2
37-
- run: cargo clippy --all-targets --all-features
37+
- run: cargo clippy --workspace --all-targets --all-features --exclude cortex-gui
3838

3939
test:
4040
name: Test (${{ matrix.name }})
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
key: ${{ matrix.name }}
6363
- name: Run tests
64-
run: cargo test --workspace --all-features
64+
run: cargo test --workspace --all-features --exclude cortex-gui
6565

6666
build-check:
6767
name: Build Check (${{ matrix.name }})
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
key: ${{ matrix.name }}
9090
- name: Check build
91-
run: cargo check --workspace --all-features
91+
run: cargo check --workspace --all-features --exclude cortex-gui
9292

9393
audit:
9494
name: Security Audit

0 commit comments

Comments
 (0)