Improve advanced_security question quality by replacing obviously incorrect distractors #587
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - uses: pre-commit/[email protected] | |
| spell-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: streetsidesoftware/cspell-action@v8 | |
| with: | |
| files: 'content/en/**/*.md' | |
| config: 'cspell.json' | |
| # Log progress and other information during the action execution. | |
| verbose: true | |
| # Determines if the action should be failed if any spelling issues are found. | |
| strict: true | |
| # Limit the files checked to the ones in the pull request or push. | |
| incremental_files_only: true |