feat(prompts): add context verification markers to SDD workflow prompts #142
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: CI - Tests and Linting | |
| on: | |
| # Avoid duplicate runs: run on PRs for branches, and on direct pushes to main | |
| # Ignore changes to CHANGELOG.md (auto-generated by semantic-release) | |
| push: | |
| branches: ["main"] | |
| paths-ignore: | |
| - "CHANGELOG.md" | |
| pull_request: | |
| paths-ignore: | |
| - "CHANGELOG.md" | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Run Linting | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install pre-commit | |
| run: pip install pre-commit | |
| - name: Run pre-commit hooks | |
| run: pre-commit run --all-files |