Bump actions/stale from 10.1.1 to 10.2.0 #4
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: Check Python code format | |
| on: [push] | |
| jobs: | |
| linter_name: | |
| name: runner / isort & black formatter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check files using the isort import sorter | |
| uses: isort/isort-action@v1 | |
| with: | |
| configuration: "--profile black --check-only" | |
| requirements-files: "requirements.txt" | |
| - name: Check files using the black formatter | |
| uses: psf/black@stable | |
| with: | |
| options: "--check" | |
| src: "." |