From 91754755df51eef543982091da284b9bc1d6c1f5 Mon Sep 17 00:00:00 2001 From: PonomarevDA Date: Mon, 2 Dec 2024 19:20:49 +0300 Subject: [PATCH] add ubuntu-20.04 and ubuntu-24.04 to dronecan sitl workflow --- .github/workflows/dronecan_sitl.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dronecan_sitl.yml b/.github/workflows/dronecan_sitl.yml index 0346732..623875d 100644 --- a/.github/workflows/dronecan_sitl.yml +++ b/.github/workflows/dronecan_sitl.yml @@ -8,7 +8,13 @@ on: - '*' jobs: sitl: - runs-on: ubuntu-22.04 + strategy: + matrix: + include: + - os: ubuntu-24.04 + - os: ubuntu-22.04 + - os: ubuntu-20.04 + runs-on: ${{ matrix.os }} timeout-minutes: 10 steps: - uses: actions/checkout@v4