Skip to content

Miri

Miri #14

Workflow file for this run

name: Miri
on:
schedule:
# 1 of the month
- cron: '0 0 1 * *'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
miri:
runs-on: ubuntu-latest
name: Miri
steps:
- uses: actions/checkout@v4
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- run: cargo xtask pre-build
- run: cargo test --doc
- run: cargo miri test --doc