Skip to content

⬆️ Bump pulldown-cmark from 0.10.3 to 0.12.1 #385

⬆️ Bump pulldown-cmark from 0.10.3 to 0.12.1

⬆️ Bump pulldown-cmark from 0.10.3 to 0.12.1 #385

Workflow file for this run

on: push
env:
CARGO_TERM_COLOR: always
jobs:
check:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
- name: ✅ run cargo check
run: cargo check
lint:
needs: check
runs-on: ubuntu-latest
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest
- name: 🔍 run cargo clippy
run: cargo clippy