HOTFIX parsing and output handling and tests #124
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: Format, types and lint check | |
| on: [push] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - name: Install Hatch | |
| uses: pypa/hatch@install | |
| - name: Formatting check | |
| if: always() | |
| run: hatch run dev:black --check . | |
| - name: Linting | |
| if: always() | |
| run: hatch run dev:ruff check . | |
| - name: Type checking | |
| if: always() | |
| run: hatch run dev:mypy . |