Merge pull request #1302 from AkihiroSuda/propose-v1.3.0 #157
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: | |
| check-format: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run make -C schema fmt | |
| run: make -C schema fmt | |
| - name: Check for changes | |
| run: git diff --exit-code | |
| codespell: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install deps | |
| run: pip install --break-system-packages codespell==v2.4.1 | |
| - name: run codespell | |
| run: codespell |