Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Use flat structure for agent events #102

Use flat structure for agent events

Use flat structure for agent events #102

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions-rs/toolchain@v1.0.7
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2.5.1
- run: cargo check --all-features
- run: cargo fmt --all --check
- run: cargo clippy --all-features -- -D warnings
- run: cargo build --release --all-features
- run: cargo test