Add test for TPM corruption due to full storage #410
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: Codespell Check | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install codespell | |
| run: pip install codespell | |
| - name: Run codespell | |
| run: | | |
| echo "Running codespell to check for spelling errors..." | |
| codespell . || (echo "❌ Spelling errors found. Please fix the issues above." && exit 1) | |
| echo "✅ No spelling errors found!" |