From 26442151c90a36556cdf8fa1219733c413e5f5e7 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 23 Jan 2025 15:56:04 -0500 Subject: [PATCH] ci: Run Rust unit tests This dropped out in https://github.com/coreos/rpm-ostree/pull/5153/files and we missed that that run was also doing unit tests. Signed-off-by: Colin Walters --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 369160e97f..08768c83a4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,8 @@ jobs: run: ./ci/codestyle.sh - name: Build run: ./ci/build.sh && make install DESTDIR=$(pwd)/install && tar -C install -czf install.tar . + - name: Unit tests + run: cargo test - name: Upload binary uses: actions/upload-artifact@v4 with: @@ -259,6 +261,8 @@ jobs: run: ./ci/installdeps.sh - name: Build run: ./ci/build.sh && make install DESTDIR=$(pwd)/install && tar -C install -czf install.tar . + - name: Unit tests + run: cargo test - name: Upload binary uses: actions/upload-artifact@v4 with: