From 4e19cba64b5188d41a56ab5d9b6b52910f2d8fae Mon Sep 17 00:00:00 2001 From: Adam Christiansen Date: Fri, 21 Jun 2024 13:52:48 -0600 Subject: [PATCH] ci: add cargo package Resolves: #4 --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f24212a..81832a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,3 +55,11 @@ jobs: uses: actions/checkout@v4 - name: Clippy run: cargo clippy --verbose --all-targets --all-features + + package: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Package + run: cargo package --verbose --all-features