normative: adopt the meta-table; field tables as embedded canonical a… #27
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 | |
| # Thin wrappers around the tools/ checks so the same checks run locally and in CI. | |
| on: [push, pull_request] | |
| jobs: | |
| british-spelling: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check British (Oxford) spelling | |
| # Invoke via sh so the check runs regardless of the file's executable bit. | |
| run: sh tools/check-dialect.sh | |
| section-refs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Check section cross-references resolve | |
| run: python3 tools/check-refs.py |