fix(cli): revert default arg #299
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] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| cache: pip | |
| python-version-file: pyproject.toml | |
| - name: Install dependencies | |
| run: pip install -e .[lint] | |
| - name: Type check | |
| run: mypy src | |
| - name: Run Black | |
| run: black --check . | |
| - name: Run Ruff | |
| run: ruff check | |
| - name: Run pre-commit | |
| run: pre-commit run --all-files |