Skip to content

adds types and service rpc between gw and worker (#3) #10

adds types and service rpc between gw and worker (#3)

adds types and service rpc between gw and worker (#3) #10

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: cargo build
run: cargo build --verbose
- name: cargo clippy
run: cargo clippy -- -D warnings
- name: cargo fmt
run: cargo fmt --check