8000 Update Rust crate comrak to 0.28.0 · Dirout/dokkoo@61e3bf7 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Oct 10, 2024. It is now read-only.

Update Rust crate comrak to 0.28.0 #1080

Update Rust crate comrak to 0.28.0

Update Rust crate comrak to 0.28.0 #1080

Workflow file for this run

on: [push]
name: Evaluate codebase
jobs:
code_check:
name: Evaluate codebase
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy, rustfmt
profile: minimal
- name: Check codebase is properly formatted
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Check codebase using linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
0