Skip to content

Commit

Permalink
ensure we run as many items as possible under CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed Apr 18, 2024
1 parent 32d3d20 commit 969c54e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache-on-failure: true

- name: Build
run: cargo build --all-targets --all-features --verbose
run: cargo build --all-targets --all-features --workspace --verbose

- name: Run tests
run: cargo test --all-features --all-targets --workspace --exclude spec-tests --verbose
Expand All @@ -56,4 +56,4 @@ jobs:
run: cargo +nightly fmt --all --check

- name: Check clippy
run: cargo +nightly clippy --all-targets --all-features --verbose -- -D warnings
run: cargo +nightly clippy --all-targets --all-features --workspace --verbose -- -D warnings
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ run-spec-tests filter="":
fmt:
cargo +nightly fmt --all
lint: fmt
cargo +nightly clippy --all-targets --all-features
cargo +nightly clippy --all-targets --all-features --workspace
build:
cargo build --all-targets --all-features
cargo build --all-targets --all-features --workspace
run-ci: lint build test
ec +command:
cargo run -p ethereum-consensus --features ec {{command}}

0 comments on commit 969c54e

Please sign in to comment.