Skip to content

[M1.2.1] Design FlatBuffers schema for Mimi messages #5

[M1.2.1] Design FlatBuffers schema for Mimi messages

[M1.2.1] Design FlatBuffers schema for Mimi messages #5

Workflow file for this run

name: CI/CD Pipeline
on:
workflow_dispatch:
jobs:
build:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Cache cargo
uses: actions/cache@v3
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build Rust
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose
- name: Lint Rust
run: cargo clippy -- -D warnings
security:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rustsec/audit-check-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}