smartart: Add process and cycle SmartArts #270
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 | |
| - run: | | |
| mkdir -p ~/.local/share/typst/packages/preview/cetz | |
| git clone --depth 1 --branch v0.3.2 https://github.com/cetz-package/cetz.git ~/.local/share/typst/packages/preview/cetz/0.3.2 | |
| - uses: typst-community/setup-typst@v3 | |
| with: | |
| typst-version: '0.13.0' | |
| cache-dependency-path: src/cetz.typ | |
| - run: | | |
| just install @local | |
| just install @preview | |
| just manual | |
| just test |