Skip to content

Update client and method name gen (language agnostic) #39

Update client and method name gen (language agnostic)

Update client and method name gen (language agnostic) #39

Workflow file for this run

name: Rust CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose