Serialize mdast to markdown #447
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
name: main | |
on: | |
- pull_request | |
- push | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- run: cargo fmt --check && cargo clippy --examples --tests --benches --all-features | |
- run: cargo test --all-features | |
- run: cargo clippy -p mdast_util_to_markdown | |
- run: cargo test -p mdast_util_to_markdown | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo install cargo-tarpaulin && cargo tarpaulin --features json --out xml | |
- uses: codecov/codecov-action@v4 |