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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
# play nicely with hermit-managed rust
hermit uninstall rustup
export CARGO_INCREMENTAL=0
cargo clippy --all-targets -- -D warnings
cargo clippy --workspace --all-targets --exclude v8 -- -D warnings

- name: Check for banned TLS crates
run: ./scripts/check-no-native-tls.sh
20 changes: 14 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ run_cli.sh
tokenizer_files/
.DS_Store
.idea
.vscode
*.log
tmp/

Expand All @@ -22,17 +23,24 @@ target/
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# UI
node_modules
./ui/desktop/out

# Generated goose DLLs (built at build time, not checked in)
ui/desktop/src/bin/goose_ffi.dll
ui/desktop/src/bin/goose_llm.dll

# Hermit
.hermit/

# Claude
.claude/
.claude

debug_*.txt

# Docs
# Dependencies
/node_modules

# Production
/build
Expand All @@ -46,9 +54,12 @@ benchmark-*
benchconf.json
scripts/fake.sh
do_not_version/
/ui/desktop/src/bin/temporal
/temporal-service/temporal.db
/ui/desktop/src/bin/temporal.db
/temporal.db

/ui/desktop/src/bin/goose-scheduler-executor
/ui/desktop/src/bin/goose
/.env

/working_dir
Expand All @@ -66,6 +77,3 @@ result
# Goose self-test artifacts
gooseselftest/
.tasks/

**/tests/**/*.txt
**/*tests*.new
Loading