From 7f8267d89124e995a3d09cdd863b27268714c42e Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Wed, 11 Jan 2023 11:00:04 +1100 Subject: [PATCH] Github Actions: add Ubuntu-22.04 to linux matrix (#810) --- .github/workflows/linux_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index 105f891..3afda04 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml @@ -6,7 +6,7 @@ jobs: build-native: strategy: matrix: - os: [ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04] compiler: [clang, gcc] runs-on: ${{ matrix.os }} continue-on-error: false