Update FAQs for Spyder 6 and further related install guide tweaks #314
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
| # Run the project's linting suite via Prek | |
| name: Lint | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - '*.*' | |
| - 'staging*' | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| - '*.*' | |
| - 'staging*' | |
| jobs: | |
| lint: | |
| name: Lint with Pre-Commit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Run pre-commit hooks with Prek | |
| uses: j178/prek-action@v2 |