Skip to content

✅ Added tests for starknet_simulate_transactions and bump starknet.rs version to maintain compatibility with Deoxys #25

✅ Added tests for starknet_simulate_transactions and bump starknet.rs version to maintain compatibility with Deoxys

✅ Added tests for starknet_simulate_transactions and bump starknet.rs version to maintain compatibility with Deoxys #25

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Cache Cargo Dependencies
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Lint with Clippy
run: |
rustup component add clippy
cargo clippy -- -D warnings
- name: Check Format
run: |
rustup component add rustfmt
cargo fmt -- --check
- name: Build
run: cargo build --verbose