Skip to content

Enhance README with detailed himitsu overview #117

Enhance README with detailed himitsu overview

Enhance README with detailed himitsu overview #117

Workflow file for this run

name: Rust CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Install protobuf compiler
run: |
if [[ "${{ runner.os }}" == "Linux" ]]; then
sudo apt-get update
sudo apt-get install -y protobuf-compiler
elif [[ "${{ runner.os }}" == "macOS" ]]; then
brew install protobuf
fi
- run: cargo fmt -- --check
- run: cargo clippy -- -D warnings
- run: cargo test