Skip to content

feat: add new Extender methods which don't use dynamic dispatch #1

feat: add new Extender methods which don't use dynamic dispatch

feat: add new Extender methods which don't use dynamic dispatch #1

Workflow file for this run

name: Push check
on:
push
jobs:
msrv-check:
name: Minimal supported version check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1.64
- run: cargo check --tests --examples
miri-test:
name: Miri test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: miri
- name: Stacked borrows
continue-on-error: true # TODO: figure out stacked borrows violation
run: cargo miri test
- name: Tree borrows
run: cargo miri test
env:
MIRIFLAGS: -Zmiri-tree-borrows