Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/rust-msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust MSRV verification test
on:
pull_request:
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
msrv-test:
name: Rust MSRV verification test
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v6

- name: protoc
uses: arduino/setup-protoc@v3

- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack

- name: Check MSRV
run: cargo hack check --rust-version --workspace --all-targets --all-features
Loading
Loading