Skip to content

Commit c9b9d2c

Browse files
committed
CI: run unittests with MSRV toolchain.
1 parent 09066e0 commit c9b9d2c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,11 @@ jobs:
161161
# always run if build succeeds
162162
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
163163
run: make BUILD=${{ matrix.build }} TEST_PREREQ= ${{ env.testTarget }}
164+
165+
- name: run unittests
166+
# unittests cannot link with Rust >= 1.89, so we limit execution to MSRV
167+
if: >-
168+
${{ !cancelled() && steps.build.outcome == 'success' &&
169+
matrix.rust-version == needs.rust-version.outputs.version
170+
}}
171+
run: make BUILD=${{ matrix.build }} unittest

0 commit comments

Comments
 (0)