From a7202010d068ebf47eefd042d30465dd6184a613 Mon Sep 17 00:00:00 2001 From: John Doty Date: Mon, 12 Aug 2024 17:43:17 -0700 Subject: [PATCH] Probably we should run tests as part of release? --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5e85acc..2241d1d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -84,6 +84,9 @@ jobs: echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV + - name: Run the tests + run: ${{ env.CARGO }} test --verbose --release ${{ env.TARGET_FLAGS }} + - name: Build release binary run: ${{ env.CARGO }} build --verbose --release ${{ env.TARGET_FLAGS }}