Fix flat-brace flipped content anchor (#688) #3113
This file contains 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 | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: imagemagick cargo parallel | |
version: 1.0 | |
- name: Install typos-cli from crates.io | |
uses: baptiste0928/cargo-install@v2.2.0 | |
with: | |
crate: typos-cli | |
- name: Install just from crates.io | |
uses: baptiste0928/cargo-install@v2.2.0 | |
with: | |
crate: just | |
- name: Install typst-test from github | |
uses: baptiste0928/cargo-install@v2.2.0 | |
with: | |
crate: typst-test | |
git: https://github.com/tingerrr/typst-test.git | |
tag: ci-semi-stable | |
- uses: typst-community/setup-typst@v3 | |
with: | |
typst-version: '0.11.0' | |
cache-dependency-path: src/deps.typ | |
- run: | | |
just install @local | |
just install @preview | |
just test |