Update README.md #532
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: ✍️ Proselint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| proselint: | |
| name: 🧹 Run proselint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ✅ Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| persist-credentials: false | |
| - name: 👷🏾♂️ Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 | |
| with: | |
| python-version: '3.14' | |
| - name: 🚧 Install Proselint | |
| run: | | |
| pip install proselint | |
| - name: 🏃♀️ Run Proselint | |
| run: | | |
| proselint check . --config=".github/linters/proselint_config.json" |