Skip to content

Enhanced Financial Advisor: Comprehensive Agent Memory Integration (#79) #353

Enhanced Financial Advisor: Comprehensive Agent Memory Integration (#79)

Enhanced Financial Advisor: Comprehensive Agent Memory Integration (#79) #353

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, ready_for_review, synchronize]
push:
branches:
- main
jobs:
test:
strategy:
matrix:
feature_flags: ["no-default-features", "all-features"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: fmt
run: cargo fmt --all -- --check
- name: build
run: cargo build --all --verbose
- name: test
run: cargo test --verbose
- name: build benchmarks
run: cargo test --benches --no-run --verbose
- name: clippy
run: cargo clippy --all
- name: docs
run: cargo doc --document-private-items --no-deps