mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
23 lines
395 B
YAML
23 lines
395 B
YAML
name: Miri
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_QUIET: true
|
|
|
|
jobs:
|
|
miri:
|
|
name: Miri
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Miri
|
|
run: |
|
|
rustup component add miri
|
|
cargo miri setup
|
|
|
|
- name: Test with Miri
|
|
run: MIRIFLAGS="-Zmiri-disable-isolation" cargo miri test
|