Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/solana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
run: cargo fmt --check --all --manifest-path Cargo.toml

- name: Run `cargo check`
run: cargo check --workspace --tests --manifest-path Cargo.toml
run: cargo check --workspace --tests --manifest-path Cargo.toml --features mainnet

- name: Run `cargo clippy`
run: cargo clippy --workspace --tests --manifest-path Cargo.toml -- -Dclippy::cast_possible_truncation
run: cargo clippy --workspace --tests --manifest-path Cargo.toml --features mainnet -- -Dclippy::cast_possible_truncation

- name: Cache solana tools
id: cache-solana
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
cargo build-sbf --features "mainnet"
cargo test-sbf -p "example-native-token-transfers" --features "mainnet"
cargo test-sbf -p "ntt-transceiver" --features "mainnet,testing"
cargo test
cargo test --features "mainnet"

check-version:
name: Check version
Expand Down
Loading
Loading