From ff5f81498ba1807ab06ffb5dadb1c99c102e0284 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 13 Dec 2022 12:57:14 +0400 Subject: Replace build script with private crate Closes GH-34. Closes GH-35. --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows/main.yml') 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 -- cgit