Skip to content

chore(deps): bump @grpc/grpc-js from 1.6.7 to 1.8.17 in /web3 #260

chore(deps): bump @grpc/grpc-js from 1.6.7 to 1.8.17 in /web3

chore(deps): bump @grpc/grpc-js from 1.6.7 to 1.8.17 in /web3 #260

Workflow file for this run

name: Web3 Rust
on:
push:
paths:
- 'web3/**'
pull_request:
paths:
- 'web3/**'
env:
CARGO_TERM_COLOR: always
jobs:
Build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web3
steps:
- uses: actions/checkout@v3
- name: Install Rust components
run: |
cargo fmt --version || rustup component add rustfmt
cargo clippy --version || rustup component add clippy
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Check format
run: cargo fmt -- --check
- name: Cargo clippy check
env:
RUSTFLAGS: -D warnings
run: cargo clippy
- name: Diff
run: git diff --exit-code