Skip to content

Commit

Permalink
ci: test on stable rust, not nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Nov 27, 2024
1 parent 9745cf3 commit ffa3158
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/actions/deps
with:
toolchain: nightly
toolchain: stable

- name: Test tenderdash-proto
shell: bash
timeout-minutes: 6
run: cargo test --all-features -p tenderdash-proto -- -Zunstable-options --ensure-time
run: cargo test --all-features -p tenderdash-proto

- name: Test tenderdash-abci
shell: bash
Expand All @@ -45,7 +45,7 @@ jobs:
env:
RUSTFLAGS: "-Cinstrument-coverage"
LLVM_PROFILE_FILE: "%p-%m.profraw"
run: cargo test --all-features -p tenderdash-abci -- -Zunstable-options --ensure-time
run: cargo test --all-features -p tenderdash-abci

- name: Emit docker logs on error
if: failure()
Expand Down

0 comments on commit ffa3158

Please sign in to comment.