We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main
1 parent 9822eee commit 3856c44Copy full SHA for 3856c44
1 file changed
.github/workflows/test.yml
@@ -9,8 +9,13 @@ env:
9
10
jobs:
11
integration:
12
- name: Integration test
+ name: Integration test (${{ matrix.branch }})
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ branch: ["3.14", "main"]
18
+
19
steps:
20
- uses: actions/checkout@v7
21
with:
@@ -34,12 +39,12 @@ jobs:
34
39
--group "$(id -g)"
35
40
--skip-cache-invalidation
36
41
--languages en
37
- --branches 3.14
42
+ --branches ${{ matrix.branch }}
38
43
44
- name: Upload documentation
45
uses: actions/upload-artifact@v7
46
- name: www-root
47
+ name: www-root-${{ matrix.branch }}
48
path: ./www
49
retention-days: 2
50
0 commit comments