Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
- name: Run tests
run: cargo test --locked --workspace --lib --bins --test '*' --exclude fig_desktop-fuzz

cargo-clippy-windows-chat-cli:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The title doesnt talk about this. What is this related to?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just updated the github workflow files to remove references to chat-cli crate/string in general.
No real impact from this change

name: Clippy Windows (chat_cli)
cargo-clippy-windows:
name: Clippy Windows
runs-on: windows-latest
timeout-minutes: 60
steps:
Expand All @@ -107,11 +107,11 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-clippy-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
- run: cargo clippy --locked -p chat_cli --color always -- -D warnings
key: cargo-clippy-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
- run: cargo clippy --locked -p q_cli --color always -- -D warnings

cargo-test-windows-chat-cli:
name: Test Windows (chat_cli)
cargo-test-windows:
name: Test Windows
runs-on: windows-latest
timeout-minutes: 60
steps:
Expand All @@ -127,9 +127,9 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-test-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
key: cargo-test-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
- name: Run tests
run: cargo test --locked -p chat_cli
run: cargo test --locked -p q_cli

cargo-fmt:
name: Fmt
Expand Down
Loading
Loading