From 6e1fa364082b70ebe64c09618fa10ea2600b8fb8 Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Tue, 7 Jan 2025 20:09:40 +0000 Subject: [PATCH] workflow: test with v4.0.0 and v3.7.0 in addition to main Change the action workflow to self test on few releases to ensure we remain compatible with those in addition to the current upstream main. Signed-off-by: Fabio Baltieri --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e87f360..242ab00 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,6 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, macos-13, macos-14, windows-2022] + release: [v3.7.0, v4.0.0, main] runs-on: ${{ matrix.os }} steps: - name: Checkout @@ -24,6 +25,7 @@ jobs: with: repository: zephyrproject-rtos/zephyr path: zephyr + ref: ${{ matrix.release }} - name: Set up Python uses: actions/setup-python@v5