feat(lib): add option to provide TX and RX visibility #251
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
# Check that minimum Rust supported version compiles this project | |
name: MSRV check | |
on: | |
pull_request: | |
paths: | |
- '**.rs' | |
- Cargo.toml | |
workflow_dispatch: | |
jobs: | |
msrv_check: | |
defaults: | |
run: | |
working-directory: differt-core | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install Cargo MSRV | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-msrv | |
- name: Check MSRV | |
run: cargo msrv verify -- cargo check --all-features |