forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 721 Bytes
/
Copy pathmsrv.yml
File metadata and controls
34 lines (30 loc) · 721 Bytes
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
name: Check minimum supported Rust version (MSRV)
on:
workflow_call:
workflow_dispatch:
inputs:
checkout_ref:
description: "Git ref (branch, tag or SHA) to check out"
required: false
type: string
env:
RUST_BACKTRACE: full
CI: true
PROFILE: debug
permissions:
contents: read
jobs:
check-msrv:
runs-on: ubuntu-24.04
timeout-minutes: 45
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ inputs.checkout_ref }}
- uses: ./.github/actions/setup
with:
rust: true
protoc: true
libsasl2: true
cargo-msrv: true
- run: cargo msrv verify