We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09066e0 commit c9b9d2cCopy full SHA for c9b9d2c
.github/workflows/ci.yaml
@@ -161,3 +161,11 @@ jobs:
161
# always run if build succeeds
162
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
163
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