Bump version: 0.0.1 → 0.1.0 #7
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: Linting | |
| on: [push, pull_request] | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| with: | |
| python-version: '3.13' | |
| - name: Run Ruff (lint + formatting + import order) | |
| run: .venv/bin/ruff check . | |
| - name: Run Ruff format check (like Black) | |
| run: .venv/bin/ruff format --check . |