From 1cd680bc845989e7cf81fadb0b918d7b9ff0629b Mon Sep 17 00:00:00 2001 From: Vallari Agrawal <val.agl002@gmail.com> Date: Thu, 13 Jun 2024 00:23:29 +0530 Subject: [PATCH] .github/workflows/unit_tests.yaml: Use ubuntu-22.04 and python 3.10 Signed-off-by: Vallari Agrawal <val.agl002@gmail.com> --- .github/workflows/unit_tests.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 04adff6..f0e1f1a 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -3,8 +3,13 @@ on: pull_request jobs: build: - - runs-on: ubuntu-latest + name: Unit Tests on python${{ matrix.python }} via ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + include: + - os: ubuntu-22.04 + python: "3.10" steps: - uses: actions/checkout@v4 - name: Setup Python