File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
tests :
10
10
strategy :
11
+ # run tests on all versions, even if one fails
12
+ fail-fast : false
11
13
matrix :
12
14
# add any other Typst versions that your package should support
13
15
typst-version :
14
16
- typst : 0.12
15
17
tytanic : 0.1
16
- # the docs don't need to build with all versions supported by the package;
17
- # the latest one is enough
18
- include :
19
- - typst-version : {typst: 0.12, tytanic: 0.1}
20
- doc : 1
18
+ # the docs don't need to build with all versions supported by the package;
19
+ # the latest one is enough
20
+ doc : true
21
+
22
+ name : Test for ${{ matrix.typst-version.typst }} (Tytanic ${{ matrix.typst-version.tytanic }}${{ matrix.typst-version. doc && ', with docs' }})
21
23
runs-on : ubuntu-latest
24
+
22
25
steps :
23
26
- name : Checkout
24
27
uses : actions/checkout@v4
49
52
retention-days : 5
50
53
51
54
- name : Build docs
52
- if : ${{ matrix.doc }}
55
+ if : ${{ matrix.typst-version. doc }}
53
56
run : just doc
You can’t perform that action at this time.
0 commit comments