2025-01-19 20:13:05 -08:00
|
|
|
on:
|
2025-01-20 11:19:03 -08:00
|
|
|
push:
|
|
|
|
pull_request:
|
2025-01-19 20:13:05 -08:00
|
|
|
|
|
|
|
name: Lints
|
|
|
|
|
|
|
|
jobs:
|
2025-01-20 11:19:03 -08:00
|
|
|
typos:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check typos
|
|
|
|
uses: crate-ci/typos@master
|
|
|
|
with:
|
2025-01-21 18:35:58 -08:00
|
|
|
config: ./tools/typos.toml
|
2025-01-21 20:29:10 -08:00
|
|
|
|
|
|
|
typstyle:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: "Download Typstyle"
|
|
|
|
run: |
|
|
|
|
wget -q "https://github.com/Enter-tainer/typstyle/releases/download/v0.12.14/typstyle-x86_64-unknown-linux-musl"
|
|
|
|
chmod +x typstyle-x86_64-unknown-linux-musl
|
|
|
|
|
|
|
|
- name: Check typst formatting
|
|
|
|
run: |
|
|
|
|
find . -type f -print0 | xargs -0 \
|
|
|
|
./typstyle-x86_64-unknown-linux-musl --check
|