Fix 387 cover spacing issues #654
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: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install cargo-binstall | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: cargo-binstall | |
| - name: Install tytanic | |
| run: cargo binstall tytanic@0.3.3 -y | |
| - name: Setup typst | |
| uses: typst-community/setup-typst@v4 | |
| - name: Run test suite | |
| run: tt run | |
| - name: Archive diffs | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: artifacts | |
| path: | | |
| tests/**/diff/*.png | |
| tests/**/out/*.png | |
| tests/**/ref/*.png | |
| retention-days: 5 | |
| typstyle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run typstyle | |
| uses: typstyle-rs/typstyle-action@main | |
| - name: Check for changes | |
| # Fails the CI job if typstyle modified any files. | |
| # This ensures developers format their code before merging. | |
| run: git diff --exit-code |