We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64726be commit 008d984Copy full SHA for 008d984
.github/workflows/tests.yml
@@ -28,10 +28,22 @@ jobs:
28
- name: Checkout
29
uses: actions/checkout@v4
30
31
- - name: Install just and tytanic
+ - name: Install just
32
uses: taiki-e/install-action@v2
33
with:
34
- tool: just,tytanic@${{ matrix.typst-version.tytanic }}
+ tool: just
35
+
36
+ - name: Install tytanic
37
+ uses: taiki-e/install-action@v2
38
+ if: ${{ !contains(matrix.typst-version.tytanic, '-rc') }}
39
+ with:
40
+ tool: tytanic@${{ matrix.typst-version.tytanic }}
41
42
+ - name: Install tytanic (prerelease)
43
+ uses: taiki-e/cache-cargo-install-action@v2
44
+ if: ${{ contains(matrix.typst-version.tytanic, '-rc') }}
45
46
47
48
- name: Setup typst
49
id: setup-typst
0 commit comments