.github/workflows/ci-sage.yml: Add input field for SAGE_MACAULAY2_TAR… #24
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: Lint | |
| on: [ push, pull_request ] | |
| jobs: | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| shell: bash -l {0} | |
| run: | | |
| sudo apt-get install -y codespell | |
| - name: Run codespell | |
| shell: bash -l {0} | |
| run: codespell --ignore-words=.codespell_ignore M2/Macaulay2/packages | |
| env: | |
| MAKEFLAGS: -j2 |