Skip to content

Commit

Permalink
ci: fix --root parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
PgBiel authored May 6, 2024
1 parent a03bbed commit edf009e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,10 @@ jobs:
with:
typst-version: ${{ matrix.typst-version }}

- name: 🛠️ Compile test document
- name: 🛠️ Compile test document (<v0.7.0)
if: ${{ matrix.typst-version != 'v0.11.0' }}
run: "typst compile --root . tests/strfmt-tests.typ"

- name: 🛠️ Compile test document (v0.7.0+)
if: ${{ matrix.typst-version == 'v0.11.0' }}
run: "typst compile tests/strfmt-tests.typ --root ."

0 comments on commit edf009e

Please sign in to comment.