mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
We'll merge this and then eventually turn it on as a nightly check, it's a manual run for now.
25 lines
530 B
YAML
25 lines
530 B
YAML
name: Miri
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
miri:
|
|
name: Miri
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
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 -p oxc_parser
|