From c69d6e13f731cf0247268ecbd1a7d1efdadddc62 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 15 Oct 2025 15:06:32 -0400 Subject: [PATCH] Include run-built-image step for Ubuntu Add step to run built image for Ubuntu in CI workflow --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7e4567..b6f9deb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,10 @@ jobs: - run: make verify-cross-compile - run: make build - run: make test + - run: make run-built-image + if: matrix.os == 'ubuntu-latest' + fmt: name: Rustfmt runs-on: ubuntu-latest