fix: use into_str instead of to_string to avoid string escaping #2293
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Miri test | |
on: | |
push: | |
jobs: | |
run-miri: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: | | |
set -e | |
rustup set profile minimal | |
rustup toolchain install nightly --component miri | |
rustup default nightly | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- run: MIRIFLAGS="-Zmiri-disable-isolation" cargo miri nextest run | |
# We need to disable isolation because | |
# "unsupported operation: `clock_gettime` with `REALTIME` clocks not available when isolation is enabled" |