diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e606903..3f27678 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,8 +9,13 @@ 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 +39,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