Skip to content

Ref01

Ref01 #88

Workflow file for this run

name: Rust CI - cargo check
on:
pull_request:
types: [opened, synchronize, reopened, assigned, labeled, ready_for_review]
jobs:
cargo-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
uses: dsherret/rust-toolchain-file@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: Install Protoc
run: sudo apt-get install -y protobuf-compiler
- name: Cargo Check
run: cargo check