Skip to content

Commit 87d9e80

Browse files
committed
fix ci
1 parent 1e2277b commit 87d9e80

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Check formatting (main workspace)
2929
run: cargo fmt --all -- --check
3030

31-
- name: Check formatting (arm_circuits workspace)
31+
- name: Check formatting (example_circuits workspace)
3232
run: cargo fmt --all -- --check
33-
working-directory: arm_circuits
33+
working-directory: example_circuits
3434

3535
clippy:
3636
name: Clippy
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
workspaces: |
7878
.
79-
arm_circuits
79+
example_circuits
8080
8181
# - name: Install RISC0 toolchain
8282
# run: |
@@ -87,10 +87,10 @@ jobs:
8787
- name: Build main workspace
8888
run: cargo build --workspace --all-targets
8989

90-
## Skip building arm_circuits workspace for now due to limited risc0-toolchain download requests
91-
# - name: Build arm_circuits workspace
90+
## Skip building example_circuits workspace for now due to limited risc0-toolchain download requests
91+
# - name: Build example_circuits workspace
9292
# run: cargo build --workspace --all-targets
93-
# working-directory: arm_circuits
93+
# working-directory: example_circuits
9494

9595
test:
9696
name: Test
@@ -119,7 +119,7 @@ jobs:
119119
.
120120
121121
- name: Run tests (main workspace)
122-
run: cargo test --workspace --features test
122+
run: cargo test --workspace
123123

124124
test-release:
125125
name: Test Release
@@ -138,5 +138,5 @@ jobs:
138138
.
139139
140140
- name: Run release tests (main workspace)
141-
run: cargo test --workspace --release --features test
141+
run: cargo test --workspace --release
142142
timeout-minutes: 60

0 commit comments

Comments
 (0)