aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-12-13 12:57:14 +0400
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-12-13 12:57:14 +0400
commitff5f81498ba1807ab06ffb5dadb1c99c102e0284 (patch)
tree4c19b6daaac3b4857022f724005095474ed35b45 /.github
parent60410a42e46d97e3581493c9d185184b7fd87bb5 (diff)
downloadmarkdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.tar.gz
markdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.tar.bz2
markdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.zip
Replace build script with private crate
Closes GH-34. Closes GH-35.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a38c5c5..c439044 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -11,6 +11,7 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
+ - run: cargo run --manifest-path generate/Cargo.toml
- run: cargo fmt --check && cargo clippy --examples --tests --benches
- run: cargo test
coverage:
@@ -20,5 +21,6 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
+ - run: cargo run --manifest-path generate/Cargo.toml
- run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml
- uses: codecov/codecov-action@v3