Skip to content

refactor: changes to match the upstream API #14

refactor: changes to match the upstream API

refactor: changes to match the upstream API #14

Workflow file for this run

on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
name: MSRV check
jobs:
msrv_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
run: rustup toolchain install stable
- name: Install Cargo MSRV
uses: actions-rs/[email protected]
with:
crate: cargo-msrv
version: latest
use-tool-cache: true
- name: Verify minimum Rust version for the library and CLI
run: |
cargo msrv verify --path ./lib
cargo msrv verify --path ./cli