Skip to content

Commit 853d86b

Browse files
authored
Mcp enablement squashed (#883)
* Squashed mcp-enablement changes * moves shellexpand to workspace dep * reverts changes in lock file * fixes tests * fixes fmt * updates lock file * Revert "updates lock file" This reverts commit f847c6f. * uses lock file from main * updates lock file * regenerates lock file * updates ci workflow to do a full fetch * allows lock file to be generated offline in the ci * Revert "allows lock file to be generated offline in the ci" This reverts commit 40a3b1a. * allows all custom tool actions * disables cache to get through CI * Revert "disables cache to get through CI" This reverts commit 46277c8. * force regenerate lock file * force regenerate lock file for test
1 parent 3328253 commit 853d86b

File tree

27 files changed

+2673
-601
lines changed

27 files changed

+2673
-601
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
~/.cargo/git/db/
4242
target/
4343
key: cargo-clippy-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
44+
- name: Force regenerate lockfile
45+
run: rm -f Cargo.lock && cargo generate-lockfile
4446
- run: cargo clippy --locked --workspace --color always -- -D warnings
4547

4648
cargo-test:
@@ -76,6 +78,8 @@ jobs:
7678
~/.cargo/git/db/
7779
target/
7880
key: cargo-test-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
81+
- name: Force regenerate lockfile
82+
run: rm -f Cargo.lock && cargo generate-lockfile
7983
- name: Generate code coverage
8084
run: cargo +nightly llvm-cov --locked --workspace --codecov --output-path lcov.info
8185
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)