1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
name: Miri
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ppmd7withoutMarker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rust version
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: miri, rust-std
- name: Miri
run: cargo +nightly miri test --features unstable-tagged-offsets --lib encoder_7::test::ppmd7encoder_without_end_marker
ppmd7withMarker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rust version
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: miri, rust-std
- name: Miri
run: cargo +nightly miri test --features unstable-tagged-offsets --lib encoder_7::test::ppmd7encoder_with_end_marker
ppmd8withoutMarker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rust version
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: miri, rust-std
- name: Miri
run: cargo +nightly miri test --features unstable-tagged-offsets --lib encoder_8::test::ppmd8encoder_without_end_marker
ppmd8withMarker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rust version
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: miri, rust-std
- name: Miri
run: cargo +nightly miri test --features unstable-tagged-offsets --lib encoder_8::test::ppmd8encoder_with_end_marker
|