Deleted Hugging Face icon/link #717
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: Lint pushes/PRs | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: 3.x | |
| - name: Install Py dependencies | |
| run: pip install -r requirements-dev.txt | |
| - name: Install Node.js dependencies | |
| run: cd node.js && npm ci | |
| - name: Lint all files | |
| run: nox -s lint-all |