feat: Added empty seed raise Exception #2
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
| # Static Code Analysis, runs when PR to main or push to feature/**, feat/**, fix/** branches. | |
| name: Static Code Analysis | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - "feature/**" | |
| - "feat/**" | |
| - "fix/**" | |
| workflow_dispatch: | |
| jobs: | |
| static-code-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Run Static Code Analysis | |
| run: uvx pre-commit run --all-files --show-diff-on-failure --color=always |