fix: Rebalance volume levels + accept percentages #215
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: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Run ruff format check | |
| run: uvx ruff format --check . | |
| - name: Run ruff lint | |
| run: uvx ruff check . | |
| - name: Run ty type checking | |
| run: uvx ty check |