Skip to content

MVP Smoke (Best Effort) #1216

MVP Smoke (Best Effort)

MVP Smoke (Best Effort) #1216

Workflow file for this run

# SPDX-License-Identifier: AGPL-3.0-or-later
# This workflow is managed by gh actions-lock.
# This workflow is managed by gh actions-lock.
name: MVP Smoke (Best Effort)
on:
push:
branches: [main]
pull_request:
branches: [main]
# Cause-B mitigation (#77): cancel superseded runs so stacked pushes
# to the same ref don't pile up identical jobs in the queue.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
mvp-smoke:
name: MVP Smoke
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@4360b52568e2003a75bf9bc1d59f33a8e3fc893c # stable
with:
toolchain: stable
- name: Cache Cargo
uses: Swatinem/rust-cache@63fed3e2fecf6f7b51dc6f043341b79ef82a9ae7 # v2.9.2
- name: Install just
uses: taiki-e/install-action@b6ff580856c41316412a0b9b60540fbc6f8c82cc # v2.86.7
with:
# Governance R1 requires versioned family-tool pins
# (just|must|trust|adjust|bust|dust|intend); bare `tool: just`
# tripped the Security policy check on every push to main since
# #130 landed (2026-05-30). 1.51.0 is the current upstream stable.
tool: just@1.51.0
- name: Build release
run: cargo build --release
- name: MVP smoke checks (best effort)
run: just --justfile Justfile mvp-env