Skip to content

Add Event Consumer and Producer #25

Add Event Consumer and Producer

Add Event Consumer and Producer #25

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['*']
jobs:
lint_with_clippy:
name: SIM_BUILD_TEST_FORMAT_LINT
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
name: cargo build
with:
command: build
args: --release --all-features
- uses: actions-rs/cargo@v1
name: cargo test
with:
command: test
args: --all-targets --benches
- uses: actions-rs/cargo@v1
name: cargo fmt
with:
command: fmt
args: --check
- uses: actions-rs/cargo@v1
name: cargo clippy
with:
command: clippy
args: -- --deny warnings