新增《源码笔记-Main.tileBrick》
#239
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: whitespace | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install latexindent | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y texlive-extra-utils | |
| - name: Check formatting | |
| run: | | |
| latexindent --GCString -sl -kv -r -l -wd -s -c -tt $(git ls-files '*.tex') | |
| - name: Upload Log | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: -t/indent.log |