Fix Debug Frames & Merge Path #3503
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: Test | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install wasm32 target | |
run: rustup target add wasm32-unknown-unknown | |
- 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@v3 | |
with: | |
typst-version: '0.13.1' | |
cache-dependency-path: src/deps.typ | |
- run: | | |
typst --version | |
tt --version | |
just install @local | |
just install @preview | |
just test |