From c9ff6496f365920fc5b56e10b680c42a0c3b1c55 Mon Sep 17 00:00:00 2001 From: Michael Watzko Date: Tue, 16 Jan 2024 19:51:33 +0100 Subject: [PATCH] Add step to test building of the asn1rs binary --- .github/workflows/rust.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 018192c..3fddc03 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -68,6 +68,21 @@ jobs: command: test args: --all-features + test-build-bin: + name: Test build binary + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - uses: actions-rs/cargo@v1 + with: + command: build + args: --all-features + fmt: name: Rustfmt runs-on: ubuntu-latest