Skip to content

miri

miri #16

Workflow file for this run

name: miri
on:
workflow_dispatch:
inputs:
channel:
description: 'toolchain channel'
required: true
default: 'nightly'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
miri:
name: test-with-miri
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/setup-build
with:
os: ubuntu-latest
toolchain: ${{ inputs.channel }}
components: miri
- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- run: |
cargo make -e CARGO_TOOLCHAIN=${{ inputs.channel }} miri