Skip to content

[#60]: integrate miri in ci #6

[#60]: integrate miri in ci

[#60]: integrate miri in ci #6

Workflow file for this run

name: Miri
on:
push:
branches: [ main ]
pull_request:
branches: [ main, release* ]
jobs:
miri:
name: "Miri"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Test with Miri
run: |
filename=".miri_allowlist"
while IFS= read -r line; do
if [[ "$line" == \#* ]]; then
echo "$line"
continue
fi
if [[ -d $line ]]; then
cd "$line" || { echo "Failed to change directory to $line"; exit 1; }
echo "Run cargo miri test under: $(pwd)"
cargo miri test
cd -
else
echo "$line is not a valid directory."
fi
done < "$filename"