Add GFM Table Serialization Support to mdast_util_to_markdown #524
Workflow file for this run
This file contains hidden or 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
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo install cargo-tarpaulin | |
- run: cargo tarpaulin --features json --out xml | |
- uses: codecov/codecov-action@v5 | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
toolchain: stable | |
- run: cargo fmt --check && cargo clippy --all-features --all-targets --workspace | |
- run: cargo test --all-features --workspace | |
name: main | |
on: | |
- pull_request | |
- push |