Skip to content

chore(ci): remove dead Codecov upload steps + lock pins (#388) #1268

chore(ci): remove dead Codecov upload steps + lock pins (#388)

chore(ci): remove dead Codecov upload steps + lock pins (#388) #1268

Workflow file for this run

# SPDX-License-Identifier: AGPL-3.0-or-later

Check failure on line 1 in .github/workflows/mvp-smoke.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/mvp-smoke.yml

Invalid workflow file

(Line: 38, Col: 9): 'with' is already defined
# 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@02cb101ec7c40f2c49e1d9714d64511d8e1b74de # master
with:
toolchain: master
with:
toolchain: stable
- name: Cache Cargo
uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2
- name: Install just
uses: taiki-e/install-action@26e9283f268b880168bdbd2c545dfcd60ec2c6ab # v2.87.13
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