chore(release): complete milestone 8 #8
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: Validate repository | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| cache: pip | |
| cache-dependency-path: requirements-dev.txt | |
| - name: Install validation dependencies | |
| run: python -m pip install -r requirements-dev.txt | |
| - name: Validate repository | |
| run: make validate | |
| - name: Lint normative keywords | |
| run: make validate-normative |