Skip to content

Commit c84040f

Browse files
ci(mvp-smoke): install just before invoking the mvp-env recipe (#130)
## Summary Adds a SHA-pinned `taiki-e/install-action` step that installs `just` before the `MVP Smoke (Best Effort)` job runs `just --justfile Justfile mvp-env`. ## Why The workflow has been failing on every push with: \`\`\` /home/runner/work/_temp/…/sh: line 1: just: command not found ##[error]Process completed with exit code 127. \`\`\` The `ubuntu-latest` runner image doesn't ship `just`, and no step installed it. Surfaced during the 2026-05-30 triage of orthogonal CI failures alongside the dependabot deadlock (PR #128). ## SHA pin `taiki-e/install-action@184183c2401be73c3bf42c2e61268aa5855379c1` (v2.78.1) — matches the estate convention used across `hypatia/.github/workflows/{ci,security,tests,build-gossamer-gui}.yml`. ## Test plan - [ ] CI: `MVP Smoke (Best Effort)` returns success on this branch.
1 parent 5ddb6c1 commit c84040f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/mvp-smoke.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ jobs:
3737
- name: Cache Cargo
3838
uses: Swatinem/rust-cache@65012b490220f477f20ab979e35ae732e6de4e68 # v2
3939

40+
- name: Install just
41+
uses: taiki-e/install-action@184183c2401be73c3bf42c2e61268aa5855379c1 # v2.78.1
42+
with:
43+
tool: just
44+
4045
- name: Build release
4146
run: cargo build --release
4247

0 commit comments

Comments
 (0)