fix: correct tool use for anthropic (#3311)

This commit is contained in:
Michael Neale
2025-07-10 16:02:55 +10:00
committed by GitHub
parent 6d069095c9
commit 9606948a91
2 changed files with 135 additions and 62 deletions

View File

@@ -95,7 +95,9 @@ jobs:
- name: Build and Test
run: |
gnome-keyring-daemon --components=secrets --daemonize --unlock <<< 'foobar'
source ../bin/activate-hermit && cargo test
source ../bin/activate-hermit
export CARGO_INCREMENTAL=0
cargo test --jobs 2
working-directory: crates
- name: Check disk space before cleanup
@@ -125,8 +127,11 @@ jobs:
run: df -h
- name: Lint
run: source ./bin/activate-hermit && cargo clippy -- -D warnings
run: |
source ./bin/activate-hermit
export CARGO_INCREMENTAL=0
cargo clippy --jobs 2 -- -D warnings
desktop-lint:
name: Lint Electron Desktop App
runs-on: macos-latest