tree: Bump version + Require cetz 0.4.2 #307
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install just from crates.io | |
| uses: baptiste0928/cargo-install@v3 | |
| with: | |
| crate: just | |
| - name: Install tytanic | |
| uses: baptiste0928/cargo-install@v3 | |
| with: | |
| crate: tytanic | |
| git: https://github.com/tingerrr/tytanic.git | |
| - uses: typst-community/setup-typst@v4 | |
| with: | |
| typst-version: '0.13.1' | |
| zip-packages: requirements.json | |
| - run: | | |
| just install @local | |
| just install @preview | |
| just manual | |
| just test |