Skip to content

[#60]: integrate miri in ci #1

[#60]: integrate miri in ci

[#60]: integrate miri in ci #1

Workflow file for this run

ame: Miri

Check failure on line 1 in .github/workflows/miri-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/miri-check.yml

Invalid workflow file

The workflow is not valid. .github/workflows/miri-check.yml (Line: 1, Col: 1): Unexpected value 'ame'
on:
push:
branches: [ main ]
pull_request:
branches: [ main, release* ]
jobs:
miri:
name: "Miri"
runs-on: ubuntu-latest
# todo: disable it after all files could pass the miri check
continue-on-error: true
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: cargo miri test