From ffccb7716bf3f48773768795b796a4b25575b49f Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 4 Nov 2022 10:13:55 -0400 Subject: [PATCH] Fix integration test running on Linux unit test matrix Signed-off-by: Sebastian Malton --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c9dfbeef2d..ee1ab58970 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,7 +74,7 @@ jobs: - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration name: Run Linux integration tests - if: runner.os == 'Linux' + if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - run: make integration name: Run macOS integration tests