adapt reader test to fit bf97527477f84d6ac0752a196120ce424e6f9a9a #243
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' # or any version your project uses | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install black==25.1.0 ruff==0.12.2 | |
| - name: Run Black | |
| run: black --check . | |
| - name: Run Ruff (no formatting) | |
| run: ruff check . --no-fix |