From f166e60e428c8dafed6c3ded7df49fe2e41a2c03 Mon Sep 17 00:00:00 2001 From: "Dr. Charlie Vanaret" Date: Wed, 16 Oct 2024 01:11:17 +0200 Subject: [PATCH] unit-tests-ubuntu.yml: testing on both x64 and x86 --- .github/workflows/unit-tests-ubuntu.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests-ubuntu.yml b/.github/workflows/unit-tests-ubuntu.yml index 08ed0337..12db9b74 100644 --- a/.github/workflows/unit-tests-ubuntu.yml +++ b/.github/workflows/unit-tests-ubuntu.yml @@ -17,7 +17,11 @@ jobs: # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. # You can convert this to a matrix build if you need cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + architecture: [x86, x64] steps: - uses: actions/checkout@v4