Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

feat(rust-core): llm openai && local #148

Merged
merged 12 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ jobs:
- name: Install cargo-audit
run: cargo install cargo-audit

- name: Generate lockfile
run: cargo generate-lockfile

- name: Audit dependencies
run: cargo audit

Expand All @@ -53,6 +50,9 @@ jobs:
- name: fmt
run: cargo fmt --check

- name: lint
run: cargo check --all-targets --all-features

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

Expand Down
Loading