fix(warehouses): Fix cli_main import after recent refactoring #499
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: Static checks | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| staticcheck: | |
| name: static checks | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - name: "Install prek" | |
| run: > | |
| python -m pip install prek | |
| - name: "Run prek" | |
| run: > | |
| prek --all-files --verbose |