Skip to content

chore(deps): bump pulldown-cmark from 0.10.3 to 0.13.0 #259

chore(deps): bump pulldown-cmark from 0.10.3 to 0.13.0

chore(deps): bump pulldown-cmark from 0.10.3 to 0.13.0 #259

Workflow file for this run

on:
pull_request:
paths:
- '**.rs'
- Cargo.toml
workflow_dispatch:
name: MSRV check
jobs:
msrv_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Cargo MSRV
uses: actions-rs/install@v0.1
with:
crate: cargo-msrv
version: latest
use-tool-cache: true
- name: Check MSRV
run: cargo msrv verify -- cargo check --all-features
- name: Find MSRV if above fail
if: failure()
run: cargo msrv find -- cargo check --all-features