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 f206c8fCopy full SHA for f206c8f
1 file changed
.github/workflows/test.yml
@@ -9,8 +9,12 @@ 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
steps:
19
- uses: actions/checkout@v7
20
with:
@@ -34,12 +38,12 @@ jobs:
34
38
--group "$(id -g)"
35
39
--skip-cache-invalidation
36
40
--languages en
37
- --branches 3.14
41
+ --branches ${{ matrix.branch }}
42
43
- name: Upload documentation
44
uses: actions/upload-artifact@v7
45
- name: www-root
46
+ name: www-root-${{ matrix.branch }}
47
path: ./www
48
retention-days: 2
49
0 commit comments