feat: add support for HTML, Markdown and Typst files #157
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
on: | |
pull_request: | |
paths: | |
- '**.rs' | |
- Cargo.toml | |
workflow_dispatch: | |
name: MSRV check | |
jobs: | |
msrv_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install Cargo MSRV | |
uses: actions-rs/[email protected] | |
with: | |
crate: cargo-msrv | |
version: latest | |
use-tool-cache: true | |
- name: Check MSRV | |
run: cargo msrv verify -- cargo check --all-features |