feat: add new Extender methods which don't use dynamic dispatch #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |