From 5257610608ebcbbcc703c97a18fb2ba9043aeb29 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Fri, 1 Sep 2023 11:23:10 +0200 Subject: [PATCH] test: run integration-cli tests on ubuntu 20.04 and 22.04 Signed-off-by: Djordje Lukic --- .github/workflows/.test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/.test.yml b/.github/workflows/.test.yml index b80f23c79f..01868e66d6 100644 --- a/.github/workflows/.test.yml +++ b/.github/workflows/.test.yml @@ -331,7 +331,7 @@ jobs: echo ${{ steps.tests.outputs.matrix }} integration-cli: - runs-on: ubuntu-20.04 + runs-on: ${{ matrix.os }} continue-on-error: ${{ github.event_name != 'pull_request' }} timeout-minutes: 120 needs: @@ -339,6 +339,9 @@ jobs: strategy: fail-fast: false matrix: + os: + - ubuntu-20.04 + - ubuntu-22.04 test: ${{ fromJson(needs.integration-cli-prepare.outputs.matrix) }} steps: -