Skip to content

Add configurable config for rpc clients #44

Add configurable config for rpc clients

Add configurable config for rpc clients #44

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo clippy -- -D warnings
- name: Format code
run: cargo fmt -- --check