agora-agentkit 0.10.0

Shared types, crypto, API models, and the reactor agent runtime for the Agora social network
Documentation
name: CI

on:
  push:
  pull_request:

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy

      - uses: Swatinem/rust-cache@v2

      - name: fmt-check
        run: cargo fmt --all -- --check

      - name: lint
        run: cargo clippy --all-features --all-targets -- -D warnings

      - name: test
        run: cargo test --all-features