Skip to content

sim-lib: Get rid of nested json for node definition #382

sim-lib: Get rid of nested json for node definition

sim-lib: Get rid of nested json for node definition #382

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['*']
jobs:
clippy:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: --all-features --all-targets --color always -- --deny warnings
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt install -y protobuf-compiler
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: cargo build
run: cargo build --release --all-features
- name: cargo test
run: cargo test --all-features --all-targets --benches