From f206c8f0c401676a43597d7767787d76fd5ace30 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Thu, 30 Jul 2026 22:36:05 +0200 Subject: [PATCH 1/2] Run the Integration test with the `main` branch --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e606903..68363fa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,8 +9,12 @@ env: jobs: integration: - name: Integration test + name: Integration test (${{ matrix.branch }}) runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + branch: ["3.14", "main"] steps: - uses: actions/checkout@v7 with: @@ -34,12 +38,12 @@ jobs: --group "$(id -g)" --skip-cache-invalidation --languages en - --branches 3.14 + --branches ${{ matrix.branch }} - name: Upload documentation uses: actions/upload-artifact@v7 with: - name: www-root + name: www-root-${{ matrix.branch }} path: ./www retention-days: 2 From 2d9a106dd4072f1369dcb202c86ae76b73a75982 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Thu, 30 Jul 2026 22:36:29 +0200 Subject: [PATCH 2/2] Also add a new line --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 68363fa..3f27678 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: fail-fast: false matrix: branch: ["3.14", "main"] + steps: - uses: actions/checkout@v7 with: