Skip to content

Smoke Test

Smoke Test #128

Workflow file for this run

name: Smoke Test
on:
workflow_dispatch:
concurrency:
group: smoke-test
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
- run: cargo build --package crates_io_smoke_test
- run: cargo run --package crates_io_smoke_test --quiet
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.STAGING_SMOKE_TEST_TOKEN }}