mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
27 lines
522 B
YAML
27 lines
522 B
YAML
name: Miri
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
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
|