bump: version 0.5.0 → 0.6.0 #403
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: Ruff | |
| on: [push, pull_request] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| # run on a "fresh" python | |
| python-version: 3.12 | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install hatch | |
| run: python -m pip install hatch | |
| - name: Check code | |
| run: hatch fmt --check |