fix: #10481 EHR launch skip login screen (#10482) #5
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: Spell Check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - rel-* | |
| pull_request: | |
| branches: | |
| - master | |
| - rel-* | |
| jobs: | |
| spellcheck: | |
| name: Check Spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| cache: pip | |
| cache-dependency-path: .github/requirements-spellcheck.txt | |
| - name: Install codespell | |
| run: pip install -r .github/requirements-spellcheck.txt | |
| - name: Setup problem matcher | |
| uses: codespell-project/codespell-problem-matcher@v1 | |
| - name: Run codespell | |
| run: codespell |