Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
CPerezz committed Aug 16, 2024
1 parent 143c5e5 commit efbdb96
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ jobs:
with:
toolchain: nightly
- uses: actions-rs/toolchain@v1
# use the more efficient nextest
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
- name: Download Circom
run: |
mkdir -p $HOME/bin
Expand All @@ -71,7 +69,7 @@ jobs:
run: cargo build --release --all-targets --no-default-features --features "light-test,${{ matrix.feature }}"
- name: Test
run: |
cargo nextest run --profile ci --release --workspace --no-default-features --features "light-test,${{ matrix.feature }}"
cargo test --release --workspace --no-default-features --features "light-test,${{ matrix.feature }}"
- name: Doctests # nextest does not support doc tests
run: |
cargo test --doc
Expand Down Expand Up @@ -131,10 +129,7 @@ jobs:
- name: Execute compile.sh to generate .json from noir
run: ./folding-schemes/src/frontend/noir/test_folder/compile.sh
- name: Run examples tests
run: |
cargo clean
cargo update
cargo test --examples
run: cargo test --examples
- name: Run examples
run: cargo run --release --example 2>&1 | grep -E '^ ' | xargs -n1 cargo run --release --example

Expand Down Expand Up @@ -163,7 +158,7 @@ jobs:
- feature:
- default
- wasm
- "default, light-test"
- default
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -174,7 +169,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --no-default-features --features ${{ matrix.feature }} -- -D warnings
args: --all-targets --no-default-features --features "light-test,${{ matrix.feature }}" -- -D warnings

typos:
if: github.event.pull_request.draft == false
Expand Down

0 comments on commit efbdb96

Please sign in to comment.