Changes to README, latex package and pdf generation script #193
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: Check Spelling | |
| on: | |
| push: | |
| branches-ignore: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| spelling: | |
| name: Check Spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| # Full git history is needed to get a proper list of changed files within `super-linter` | |
| fetch-depth: 0 | |
| - name: Check Spelling | |
| uses: codespell-project/actions-codespell@master | |
| with: | |
| check_filenames: true |